@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body, h1, h2, h3, h4, h5, h6, p, div, button {font-family: "Inter" !important;}

.gc-hero-section {
    width: 100%;
    padding: 70px 20px;
    background: #fbfaf7;
    font-family: Arial, sans-serif;
  }
  
  .gc-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }
  
  .gc-hero-content {
    max-width: 620px;
  }
  
  .gc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid #ffc7ad;
    border-radius: 999px;
    color: #777;
    font-size: 14px;
    letter-spacing: 5px;
    margin-bottom: 35px;
  }
  
  .gc-hero-badge span {
    width: 11px;
    height: 11px;
    background: #ff6338;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #ffe2d6;
  }
  
  .gc-hero-title {
    margin: 0;
    font-size: 68px;
    line-height: 0.95;
    font-weight: 800;
    color: #172033;
    letter-spacing: -3px;
  }
  
  .gc-hero-title span {
    color: #ff6338;
    background: linear-gradient(to top, #ffd9ca 35%, transparent 35%);
  }
  
  .gc-hero-text {
    margin: 32px 0 35px;
    font-size: 26px;
    line-height: 1.45;
    color: #6f6f6f;
  }
  
  .gc-hero-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 540px;
    min-height: 76px;
    background: #ff6338;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 18px 35px rgba(255, 99, 56, 0.28);
  }
  
  .gc-hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 22px;
    color: #6d6d6d;
    font-size: 18px;
  }
  
  .gc-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    color: #707070;
    font-size: 16px;
  }
  
  .gc-hero-trust span:not(:last-child) {
    padding-right: 20px;
    border-right: 1px solid #e5e0d8;
  }
  
  .gc-hero-note {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
    padding: 16px 26px;
    background: #fff;
    border: 1px solid #eee6dc;
    border-radius: 999px;
    color: #172033;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }
  
  .gc-hero-note span {
    width: 30px;
    height: 30px;
    background: #fff3df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6338;
  }
  
  .gc-hero-image img {
    width: 100%;
    display: block;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.16);
  }
  
  /* Tablet */
  @media (max-width: 991px) {
    .gc-hero-container {
      grid-template-columns: 1fr;
      gap: 45px;
    }
  
    .gc-hero-content {
      max-width: 100%;
    }
  
    .gc-hero-title {
      font-size: 52px;
    }
  
    .gc-hero-text {
      font-size: 22px;
    }
  }
  
  /* Mobile */
  @media (max-width: 575px) {
    .gc-hero-section {
      padding: 45px 16px;
    }
  
    .gc-hero-badge {
      font-size: 11px;
      letter-spacing: 3px;
      padding: 9px 14px;
    }
  
    .gc-hero-title {
      font-size: 42px;
      letter-spacing: -2px;
    }
  
    .gc-hero-text {
      font-size: 19px;
      margin: 24px 0 28px;
    }
  
    .gc-hero-btn {
      min-height: 64px;
      font-size: 18px;
    }
  
    .gc-hero-benefits,
    .gc-hero-trust {
      gap: 14px;
      font-size: 15px;
    }
  
    .gc-hero-trust span {
      border-right: none !important;
      padding-right: 0 !important;
    }
  
    .gc-hero-image img {
      border-radius: 24px;
    }
  }


  .gc-stats-section {
    width: 100%;
    padding: 45px 20px 42px;
    background: #f2eee8;
    font-family: Arial, sans-serif;
  }
  
  .gc-stats-container {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
  }
  
  .gc-stats-label {
    margin-bottom: 36px;
    color: #747474;
    font-size: 14px;
    letter-spacing: 8px;
    font-weight: 500;
  }
  
  .gc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
  }
  
  .gc-stat-number {
    color: #172033;
    font-size: 44px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
  }
  
  .gc-stat-text {
    margin-top: 18px;
    color: #767676;
    font-size: 18px;
    line-height: 1.3;
  }
  
  .gc-stat-highlight .gc-stat-number,
  .gc-stat-highlight .gc-stat-text {
    color: #ff6338;
  }
  
  /* Tablet */
  @media (max-width: 991px) {
    .gc-stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 35px 25px;
    }
  }
  
  /* Mobile */
  @media (max-width: 575px) {
    .gc-stats-section {
      padding: 38px 16px;
    }
  
    .gc-stats-label {
      font-size: 11px;
      letter-spacing: 4px;
      line-height: 1.5;
      margin-bottom: 30px;
    }
  
    .gc-stats-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .gc-stat-number {
      font-size: 38px;
    }
  
    .gc-stat-text {
      margin-top: 12px;
      font-size: 16px;
    }
  }


  .gc-free-section {
    width: 100%;
    padding: 90px 20px 80px;
    background: #fbfaf7;
    font-family: Arial, sans-serif;
  }
  
  .gc-free-container {
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
  }
  
  .gc-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border: 1px solid #e8dfd5;
    border-radius: 999px;
    color: #777;
    font-size: 14px;
    letter-spacing: 6px;
    margin-bottom: 28px;
  }
  
  .gc-free-badge span {
    width: 10px;
    height: 10px;
    background: #ff6338;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #ffe4d9;
  }
  
  .gc-free-title {
    max-width: 760px;
    margin: 0 auto 55px;
    color: #172033;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
  }
  
  .gc-free-title span {
    color: #ff6338;
  }
  
  .gc-free-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 46px;
  }
  
  .gc-free-card {
    min-height: 210px;
    padding: 30px 28px;
    background: #fff;
    border: 1px solid #eee7dd;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  }
  
  .gc-free-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    background: #fff2df;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
  }
  
  .gc-free-card h3 {
    margin: 0 0 14px;
    color: #172033;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 3px;
    font-weight: 800;
  }
  
  .gc-free-card p {
    margin: 0;
    color: #747474;
    font-size: 19px;
    line-height: 1.45;
  }
  
  .gc-free-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 240px;
    min-height: 64px;
    padding: 0 34px;
    background: #ff6338;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 18px 35px rgba(255, 99, 56, 0.28);
  }
  
  @media (max-width: 991px) {
    .gc-free-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .gc-free-title {
      font-size: 44px;
    }
  }
  
  @media (max-width: 575px) {
    .gc-free-section {
      padding: 60px 16px;
    }
  
    .gc-free-badge {
      font-size: 11px;
      letter-spacing: 4px;
    }
  
    .gc-free-title {
      font-size: 34px;
      margin-bottom: 35px;
    }
  
    .gc-free-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }
  
    .gc-free-card {
      min-height: auto;
      padding: 26px 24px;
    }
  
    .gc-free-card p {
      font-size: 17px;
    }
  
    .gc-free-btn {
      width: 100%;
    }
  }



  .gc-results-section {
    width: 100%;
    padding: 80px 20px 90px;
    background: #fff4e4;
    font-family: Arial, sans-serif;
  }
  
  .gc-results-container {
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
  }
  
  .gc-results-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border: 1px solid #e1d9cf;
    border-radius: 999px;
    background: #fff;
    color: #777;
    font-size: 13px;
    letter-spacing: 5px;
    margin-bottom: 24px;
  }
  
  .gc-results-badge span {
    width: 10px;
    height: 10px;
    background: #ff6338;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #ffe4d9;
  }
  
  .gc-results-title {
    margin: 0 0 56px;
    color: #172033;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
  }
  
  .gc-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  
  .gc-result-card {
    padding: 28px;
    background: #fff;
    border: 1px solid #eee2d6;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  }
  
  .gc-result-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
  }
  
  .gc-result-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #172033;
    font-size: 28px;
    font-weight: 700;
    border: 4px solid #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.13);
  }
  
  .gc-avatar-red { background: #ffa99c; }
  .gc-avatar-blue { background: #81c4f5; }
  .gc-avatar-green { background: #88d8a0; }
  
  .gc-result-head h3 {
    margin: 0 0 8px;
    color: #172033;
    font-size: 17px;
    letter-spacing: 3px;
    font-weight: 800;
  }
  
  .gc-result-head p {
    margin: 0;
    color: #747474;
    font-size: 16px;
  }
  
  .gc-result-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    margin-bottom: 16px;
    align-items: start;
  }
  
  .gc-result-row span {
    color: #777;
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 700;
  }
  
  .gc-result-row.active span {
    color: #ff6338;
  }
  
  .gc-result-row del {
    color: #444;
    font-size: 16px;
  }
  
  .gc-result-row strong {
    color: #172033;
    font-size: 16px;
    line-height: 1.35;
  }
  
  .gc-result-card blockquote {
    margin: 24px 0 20px;
    padding-left: 20px;
    border-left: 3px solid #ff6338;
    color: #333;
    font-size: 19px;
    line-height: 1.45;
    font-style: italic;
  }
  
  .gc-result-income {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid #eadfd2;
    border-radius: 14px;
  }
  
  .gc-income-icon {
    width: 42px;
    height: 42px;
    background: #13b800;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }
  
  .gc-income-icon.green {
    background: #21c677;
  }
  
  .gc-result-income div span {
    display: block;
    color: #777;
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 6px;
  }
  
  .gc-result-income div strong {
    color: #172033;
    font-size: 22px;
    font-weight: 800;
  }
  
  .gc-result-income em {
    margin-left: auto;
    color: #14b800;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
  }
  
  @media (max-width: 991px) {
    .gc-results-grid {
      grid-template-columns: 1fr;
    }
  
    .gc-results-title {
      font-size: 42px;
    }
  }
  
  @media (max-width: 575px) {
    .gc-results-section {
      padding: 60px 16px;
    }
  
    .gc-results-title {
      font-size: 34px;
    }
  
    .gc-result-card {
      padding: 22px;
    }
  
    .gc-result-row {
      grid-template-columns: 1fr;
      gap: 6px;
    }
  }


  .gc-steps-section {
    width: 100%;
    padding: 90px 20px 80px;
    background: #fbfaf7;
    font-family: Arial, sans-serif;
  }
  
  .gc-steps-container {
    max-width: 1450px;
    margin: 0 auto;
    text-align: center;
  }
  
  .gc-steps-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border: 1px solid #e5ddd3;
    border-radius: 999px;
    color: #777;
    font-size: 13px;
    letter-spacing: 5px;
    margin-bottom: 26px;
  }
  
  .gc-steps-badge span {
    width: 10px;
    height: 10px;
    background: #ff6338;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #ffe5d8;
  }
  
  .gc-steps-title {
    margin: 0 0 55px;
    color: #172033;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
  }
  
  .gc-steps-title span {
    color: #ff6338;
  }
  
  .gc-steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 46px;
  }
  
  .gc-step-card {
    flex: 1;
    max-width: 320px;
    min-height: 260px;
    padding: 28px;
    background: #fff;
    border: 1px solid #ece3d9;
    border-radius: 18px;
    text-align: left;
  }
  
  .gc-step-number {
    margin-bottom: 24px;
    color: #ff6338;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
  }
  
  .gc-step-icon {
    margin-bottom: 18px;
    font-size: 34px;
  }
  
  .gc-step-card h3 {
    margin: 0 0 16px;
    color: #172033;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 800;
  }
  
  .gc-step-card p {
    margin: 0;
    color: #767676;
    font-size: 17px;
    line-height: 1.5;
  }
  
  .gc-step-arrow {
    color: #ff6338;
    font-size: 46px;
    font-weight: 300;
    flex-shrink: 0;
  }
  
  .gc-steps-note {
    max-width: 820px;
    margin: 0 auto;
    padding: 26px 34px;
    border: 1px solid #ffd1ba;
    border-radius: 18px;
    background: #fff5ea;
    color: #172033;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
  }
  
  .gc-steps-note span {
    color: #ff6338;
  }
  
  @media (max-width: 1200px) {
    .gc-steps-grid {
      flex-wrap: wrap;
    }
  
    .gc-step-arrow {
      display: none;
    }
  
    .gc-step-card {
      max-width: calc(50% - 10px);
    }
  }
  
  @media (max-width: 768px) {
    .gc-steps-title {
      font-size: 42px;
    }
  
    .gc-step-card {
      max-width: 100%;
    }
  }
  
  @media (max-width: 575px) {
    .gc-steps-section {
      padding: 60px 16px;
    }
  
    .gc-steps-badge {
      font-size: 11px;
      letter-spacing: 4px;
    }
  
    .gc-steps-title {
      font-size: 34px;
      margin-bottom: 40px;
    }
  
    .gc-steps-grid {
      gap: 16px;
    }
  
    .gc-step-card {
      min-height: auto;
      padding: 24px;
    }
  
    .gc-step-number {
      font-size: 16px;
    }
  
    .gc-step-card h3 {
      font-size: 20px;
    }
  
    .gc-step-card p {
      font-size: 16px;
    }
  
    .gc-steps-note {
      padding: 22px;
      font-size: 18px;
    }
  }



  .gc-audience-section {
    width: 100%;
    padding: 90px 20px 80px;
    background: #fbfaf7;
    font-family: Arial, sans-serif;
  }
  
  .gc-audience-container {
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
  }
  
  .gc-audience-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border: 1px solid #e5ddd3;
    border-radius: 999px;
    color: #777;
    font-size: 13px;
    letter-spacing: 5px;
    margin-bottom: 24px;
  }
  
  .gc-audience-badge span {
    width: 10px;
    height: 10px;
    background: #ff6338;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #ffe5d8;
  }
  
  .gc-audience-title {
    margin: 0 0 55px;
    color: #172033;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
  }
  
  .gc-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }
  
  .gc-audience-card {
    padding: 28px;
    background: #fff;
    border: 1px solid #ece3d9;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  }
  
  .gc-audience-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    background: #fff2df;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
  }
  
  .gc-audience-card h3 {
    margin: 0 0 18px;
    color: #172033;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 2px;
    font-weight: 800;
  }
  
  .gc-audience-card p {
    margin: 0;
    color: #6f6f6f;
    font-size: 18px;
    line-height: 1.5;
  }
  
  .gc-audience-warning {
    max-width: 900px;
    margin: 0 auto;
    padding: 34px 38px;
    background: #fff;
    border: 2px dashed #ff6a3d;
    border-radius: 24px;
    text-align: left;
  }
  
  .gc-warning-title {
    margin-bottom: 22px;
    color: #b52812;
    font-size: 20px;
    font-weight: 800;
  }
  
  .gc-audience-warning ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .gc-audience-warning li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    color: #333;
    font-size: 19px;
    line-height: 1.5;
  }
  
  .gc-audience-warning li:last-child {
    margin-bottom: 0;
  }
  
  .gc-audience-warning li::before {
    content: "â€“";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6338;
    font-weight: 700;
  }
  
  @media (max-width: 1100px) {
    .gc-audience-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .gc-audience-title {
      font-size: 42px;
    }
  }
  
  @media (max-width: 575px) {
    .gc-audience-section {
      padding: 60px 16px;
    }
  
    .gc-audience-badge {
      font-size: 11px;
      letter-spacing: 4px;
    }
  
    .gc-audience-title {
      font-size: 34px;
      margin-bottom: 38px;
    }
  
    .gc-audience-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }
  
    .gc-audience-card {
      padding: 24px;
    }
  
    .gc-audience-card p {
      font-size: 17px;
    }
  
    .gc-audience-warning {
      padding: 26px 22px;
    }
  
    .gc-warning-title {
      font-size: 18px;
    }
  
    .gc-audience-warning li {
      font-size: 17px;
    }
  } 



  .gc-team-section {
    width: 100%;
    padding: 80px 20px 70px;
    background: #fbfaf7;
    font-family: Arial, sans-serif;
  }
  
  .gc-team-container {
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
  }
  
  .gc-team-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border: 1px solid #e5ddd3;
    border-radius: 999px;
    color: #777;
    font-size: 13px;
    letter-spacing: 5px;
    margin-bottom: 24px;
  }
  
  .gc-team-badge span {
    width: 10px;
    height: 10px;
    background: #ff6338;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #ffe5d8;
  }
  
  .gc-team-title {
    margin: 0 0 55px;
    color: #172033;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
  }
  
  .gc-team-title span {
    color: #ff6338;
  }
  
  .gc-founder-row {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 52px;
    align-items: center;
    margin-bottom: 55px;
    text-align: left;
  }
  
  .gc-founder-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.10);
  }
  
  .gc-founder-label,
  .gc-team-box-label {
    margin-bottom: 12px;
    color: #ff6338;
    font-size: 13px;
    letter-spacing: 5px;
    font-weight: 800;
  }
  
  .gc-founder-content h3 {
    margin: 0 0 22px;
    color: #172033;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
  }
  
  .gc-founder-content ul,
  .gc-team-box-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .gc-founder-content li {
    margin-bottom: 18px;
    color: #333;
    font-size: 18px;
    line-height: 1.4;
  }
  
  .gc-founder-content li::before {
    content: "â€¢ ";
  }
  
  .gc-founder-content blockquote {
    margin: 28px 0 0;
    padding: 26px 30px;
    background: #fff4e4;
    border-left: 3px solid #ff6338;
    border-radius: 14px;
    color: #172033;
    font-size: 19px;
    line-height: 1.45;
    font-style: italic;
  }
  
  .gc-team-box {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: center;
    padding: 28px;
    background: #172033;
    border-radius: 18px;
    text-align: left;
  }
  
  .gc-team-box-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
  }
  
  .gc-team-box-label {
    color: #9aa3b3;
  }
  
  .gc-team-box-content h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
  }
  
  .gc-team-box-content li {
    margin-bottom: 12px;
    color: #e3e7ef;
    font-size: 18px;
  }
  
  .gc-team-box-content li::before {
    content: "âœ“ ";
  }
  
  @media (max-width: 991px) {
    .gc-founder-row,
    .gc-team-box {
      grid-template-columns: 1fr;
    }
  
    .gc-team-title {
      font-size: 42px;
    }
  
    .gc-founder-image {
      max-width: 430px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 575px) {
    .gc-team-section {
      padding: 60px 16px;
    }
  
    .gc-team-badge {
      font-size: 11px;
      letter-spacing: 4px;
    }
  
    .gc-team-title {
      font-size: 34px;
      margin-bottom: 38px;
    }
  
    .gc-founder-row {
      gap: 32px;
    }
  
    .gc-founder-content h3 {
      font-size: 28px;
    }
  
    .gc-founder-content blockquote {
      padding: 22px;
      font-size: 17px;
    }
  
    .gc-team-box {
      padding: 22px;
    }
  
    .gc-team-box-content h3 {
      font-size: 23px;
    }
  }


  .gc-faq-section {
    width: 100%;
    padding: 80px 20px 90px;
    background: #fbfaf7;
    font-family: Arial, sans-serif;
  }
  
  .gc-faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .gc-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border: 1px solid #e5ddd3;
    border-radius: 999px;
    color: #777;
    font-size: 13px;
    letter-spacing: 5px;
    margin-bottom: 24px;
  }
  
  .gc-faq-badge span {
    width: 10px;
    height: 10px;
    background: #ff6338;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #ffe5d8;
  }
  
  .gc-faq-title {
    margin: 0 0 48px;
    color: #172033;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
  }
  
  .gc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .gc-faq-item {
    background: #fff;
    border: 1px solid #eee7dd;
    border-radius: 14px;
    text-align: left;
    overflow: hidden;
  }
  
  .gc-faq-item summary {
    position: relative;
    padding: 24px 24px 24px 62px;
    color: #172033;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
  }
  
  .gc-faq-item summary::-webkit-details-marker {
    display: none;
  }
  
  .gc-faq-item summary::before {
    content: "â–¶";
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #fff2df;
    color: #ff6338;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
  }
  
  .gc-faq-item[open] summary::before {
    transform: translateY(-50%) rotate(90deg);
  }
  
  .gc-faq-item p {
    margin: 0;
    padding: 0 24px 24px 62px;
    color: #6f6f6f;
    font-size: 16px;
    line-height: 1.5;
  }
  
  @media (max-width: 575px) {
    .gc-faq-section {
      padding: 60px 16px;
    }
  
    .gc-faq-badge {
      font-size: 11px;
      letter-spacing: 4px;
    }
  
    .gc-faq-title {
      font-size: 34px;
      margin-bottom: 34px;
    }
  
    .gc-faq-item summary {
      padding: 20px 18px 20px 56px;
      font-size: 16px;
    }
  
    .gc-faq-item p {
      padding: 0 18px 20px 56px;
    }
  }


  .gc-final-cta {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 70px 20px 60px;
    background: radial-gradient(circle at top left, #ff6538 0%, #e95a30 45%, #9f351d 100%);
    font-family: Arial, sans-serif;
    color: #fff;
  }
  
  .gc-final-container {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  
  .gc-final-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(23, 32, 51, 0.28);
    color: #fff;
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 20px;
  }
  
  .gc-final-badge span {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
  }
  
  .gc-final-title {
    margin: 0 0 18px;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
  }
  
  .gc-final-text {
    margin: 0 0 28px;
    color: rgba(255,255,255,0.86);
    font-size: 17px;
    line-height: 1.5;
  }
  
  .gc-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 390px;
    max-width: 100%;
    min-height: 56px;
    background: #fff;
    color: #ff6338;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 16px 30px rgba(0,0,0,0.18);
  }
  
  .gc-final-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 34px;
    max-width: 520px;
    margin: 18px auto 26px;
    color: rgba(255,255,255,0.86);
    font-size: 14px;
    text-align: left;
  }
  
  .gc-final-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    color: rgba(255,255,255,0.78);
    font-size: 12px;
  }
  
  .gc-final-trust span:not(:last-child) {
    padding-right: 14px;
    border-right: 1px solid rgba(255,255,255,0.25);
  }
  
  .gc-final-note {
    margin-top: 30px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    letter-spacing: 4px;
  }
  
  .gc-final-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
  }
  
  .gc-final-circle-left {
    width: 260px;
    height: 260px;
    left: -80px;
    bottom: -120px;
  }
  
  .gc-final-circle-right {
    width: 230px;
    height: 230px;
    right: -70px;
    top: -90px;
  }
  
  @media (max-width: 575px) {
    .gc-final-cta {
      padding: 60px 16px;
    }
  
    .gc-final-title {
      font-size: 36px;
    }
  
    .gc-final-text {
      font-size: 16px;
    }
  
    .gc-final-benefits {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 10px;
    }
  
    .gc-final-trust span {
      border-right: none !important;
      padding-right: 0 !important;
    }
  
    .gc-final-note {
      font-size: 11px;
      letter-spacing: 3px;
    }
  }


  .gc-footer {
    width: 100%;
    padding: 70px 20px 80px;
    background: #fbfaf7;
    font-family: Arial, sans-serif;
  }
  
  .gc-footer-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .gc-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 28px;
    color: #172033;
    font-size: 28px;
    font-weight: 800;
  }
  
  .gc-footer-logo span {
    width: 38px;
    height: 38px;
    background: #ff6338;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 800;
  }
  
  .gc-footer-copy {
    margin-bottom: 34px;
    color: #7c7c7c;
    font-size: 18px;
  }
  
  .gc-footer-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-bottom: 34px;
  }
  
  .gc-footer-contact a {
    color: #6f6f6f;
    text-decoration: none;
    font-size: 17px;
  }
  
  .gc-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
  }
  
  .gc-footer-links a,
  .gc-footer-links span {
    color: #7b7b7b;
    text-decoration: none;
    font-size: 17px;
  }
  
  .gc-footer-links a:hover,
  .gc-footer-contact a:hover {
    color: #ff6338;
  }
  
  @media (max-width: 575px) {
    .gc-footer {
      padding: 55px 16px 65px;
    }
  
    .gc-footer-logo {
      font-size: 24px;
    }
  
    .gc-footer-copy {
      font-size: 16px;
    }
  
    .gc-footer-contact {
      flex-direction: column;
      gap: 14px;
    }
  
    .gc-footer-contact a,
    .gc-footer-links a,
    .gc-footer-links span {
      font-size: 15px;
    }
  }