
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: #1e293b;
      background-color: #ffffff;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ========== UTILITY ========== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-label {
      display: inline-block;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #ff5e57;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 42px;
      font-weight: 800;
      line-height: 1.15;
      color: #0a1628;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .section-subtitle {
      font-size: 18px;
      color: #475569;
      max-width: 620px;
      line-height: 1.7;
    }

    /* ========== NAVIGATION ========== */
    .nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: #0a1628;
      padding: 0 24px;
      box-shadow: 0 2px 20px rgba(10, 22, 40, 0.25);
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo-mark {
      width: 38px;
      height: 38px;
      background-color: #ff5e57;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 20px;
      color: #ffffff;
      letter-spacing: -0.04em;
      flex-shrink: 0;
    }

    .nav-logo-text {
      font-size: 22px;
      font-weight: 800;
      color: #ffffff;
      letter-spacing: -0.02em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: #cbd5e1;
      font-size: 15px;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: #ff5e57;
    }

    .nav-cta {
      background-color: #ff5e57;
      color: #ffffff !important;
      padding: 10px 22px;
      border-radius: 6px;
      font-weight: 600 !important;
      transition: background-color 0.2s !important;
    }

    .nav-cta:hover {
      background-color: #e04e48;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .nav-toggle span {
      display: block;
      width: 26px;
      height: 2px;
      background-color: #ffffff;
      border-radius: 2px;
    }

    /* ========== HERO ========== */
    .hero {
      background-color: #0a1628;
      color: #ffffff;
      padding: 100px 0 120px;
      position: relative;
      overflow: hidden;
    }

    .hero-pattern {
      position: absolute;
      top: -80px;
      right: -100px;
      width: 600px;
      height: 600px;
      border: 2px solid #1e3758;
      border-radius: 50%;
      opacity: 0.5;
    }

    .hero-pattern::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 40px;
      right: 40px;
      bottom: 40px;
      border: 2px solid #1e3758;
      border-radius: 50%;
    }

    .hero-pattern::after {
      content: '';
      position: absolute;
      top: 80px;
      left: 80px;
      right: 80px;
      bottom: 80px;
      border: 2px solid #1e3758;
      border-radius: 50%;
    }

    .hero-grid {
      position: absolute;
      bottom: -60px;
      right: 80px;
      display: grid;
      grid-template-columns: repeat(3, 60px);
      grid-template-rows: repeat(3, 60px);
      gap: 8px;
      opacity: 0.25;
    }

    .hero-grid div {
      border: 2px solid #1e3758;
      border-radius: 4px;
    }

    .hero-grid div:nth-child(2),
    .hero-grid div:nth-child(5),
    .hero-grid div:nth-child(8) {
      background-color: #ff5e57;
      border-color: #ff5e57;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-block;
      background-color: #132238;
      color: #ff5e57;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 8px 16px;
      border-radius: 4px;
      margin-bottom: 28px;
    }

    .hero-title {
      font-size: 56px;
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
      color: #ffffff;
    }

    .hero-title span {
      color: #ff5e57;
    }

    .hero-desc {
      font-size: 18px;
      line-height: 1.7;
      color: #94a3b8;
      margin-bottom: 36px;
      max-width: 500px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      font-size: 16px;
      font-weight: 600;
      padding: 14px 32px;
      border-radius: 6px;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
      text-align: center;
    }

    .btn-primary {
      background-color: #ff5e57;
      color: #ffffff;
    }

    .btn-primary:hover {
      background-color: #e04e48;
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(255, 94, 87, 0.35);
    }

    .btn-outline {
      background-color: transparent;
      color: #ffffff;
      border: 2px solid #334155;
    }

    .btn-outline:hover {
      border-color: #ff5e57;
      color: #ff5e57;
    }

    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-card {
      background-color: #132238;
      border: 1px solid #1e3758;
      border-radius: 16px;
      padding: 40px;
      width: 100%;
      max-width: 440px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .hero-card-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #64748b;
      margin-bottom: 16px;
    }

    .hero-card-stat {
      display: flex;
      align-items: flex-end;
      gap: 8px;
      margin-bottom: 24px;
    }

    .hero-card-number {
      font-size: 64px;
      font-weight: 900;
      line-height: 1;
      color: #ff5e57;
      letter-spacing: -0.03em;
    }

    .hero-card-unit {
      font-size: 20px;
      color: #94a3b8;
      padding-bottom: 8px;
      font-weight: 600;
    }

    .hero-card-metrics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .hero-card-metric {
      background-color: #0a1628;
      border-radius: 10px;
      padding: 16px 20px;
    }

    .hero-card-metric-value {
      font-size: 28px;
      font-weight: 800;
      color: #ffffff;
      line-height: 1.2;
    }

    .hero-card-metric-label {
      font-size: 12px;
      color: #64748b;
      margin-top: 4px;
      font-weight: 500;
    }

    /* ========== SERVICES ========== */
    .services {
      padding: 100px 0;
      background-color: #ffffff;
    }

    .services-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .services-header .section-subtitle {
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .service-card {
      background-color: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      padding: 40px 32px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .service-card:hover {
      border-color: #ff5e57;
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(10, 22, 40, 0.08);
    }

    .service-card-number {
      font-size: 56px;
      font-weight: 900;
      color: #f1f5f9;
      position: absolute;
      top: 12px;
      right: 20px;
      line-height: 1;
      pointer-events: none;
      letter-spacing: -0.04em;
    }

    .service-card:hover .service-card-number {
      color: #ffedec;
    }

    .service-card-icon {
      width: 52px;
      height: 52px;
      background-color: #ffedec;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }

    .service-card-icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: #ff5e57;
      stroke-width: 2;
    }

    .service-card-title {
      font-size: 20px;
      font-weight: 700;
      color: #0a1628;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .service-card-desc {
      font-size: 15px;
      color: #475569;
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    /* ========== ABOUT ========== */
    .about {
      padding: 100px 0;
      background-color: #f8fafc;
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .about-image-placeholder {
      width: 100%;
      aspect-ratio: 4 / 3;
      background-color: #0a1628;
      border-radius: 18px;
      position: relative;
      overflow: hidden;
    }

    .about-image-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, #132238 0%, #0a1628 100%);
    }

    .about-accent-box {
      position: absolute;
      bottom: -24px;
      right: -24px;
      width: 180px;
      height: 180px;
      background-color: #ff5e57;
      border-radius: 18px;
      z-index: -1;
    }

    .about-grid-overlay {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(30, 55, 88, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 55, 88, 0.3) 1px, transparent 1px);
      background-size: 40px 40px;
      border-radius: 18px;
    }

    .about-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      background-color: #ff5e57;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 8px 30px rgba(255, 94, 87, 0.5);
    }

    .about-play::after {
      content: '';
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 12px 0 12px 20px;
      border-color: transparent transparent transparent #ffffff;
      margin-left: 4px;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 32px;
    }

    .about-feature {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .about-feature-check {
      width: 26px;
      height: 26px;
      background-color: #ffedec;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .about-feature-check svg {
      width: 14px;
      height: 14px;
      stroke: #ff5e57;
      fill: none;
      stroke-width: 3;
    }

    .about-feature-text strong {
      display: block;
      font-size: 15px;
      color: #0a1628;
      margin-bottom: 4px;
    }

    .about-feature-text span {
      font-size: 14px;
      color: #64748b;
    }

    /* ========== PROCESS ========== */
    .process {
      padding: 100px 0;
      background-color: #ffffff;
    }

    .process-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .process-header .section-subtitle {
      margin: 0 auto;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 38px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background-color: #e2e8f0;
      z-index: 0;
    }

    .process-step {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .process-step-number {
      width: 76px;
      height: 76px;
      background-color: #ffffff;
      border: 2px solid #e2e8f0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-size: 28px;
      font-weight: 800;
      color: #0a1628;
      transition: all 0.3s;
    }

    .process-step:hover .process-step-number {
      background-color: #ff5e57;
      border-color: #ff5e57;
      color: #ffffff;
      box-shadow: 0 8px 24px rgba(255, 94, 87, 0.35);
    }

    .process-step-title {
      font-size: 18px;
      font-weight: 700;
      color: #0a1628;
      margin-bottom: 10px;
    }

    .process-step-desc {
      font-size: 14px;
      color: #64748b;
      line-height: 1.6;
      max-width: 220px;
      margin: 0 auto;
    }

    /* ========== INDUSTRIES ========== */
    .industries {
      padding: 100px 0;
      background-color: #0a1628;
    }

    .industries-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .industries-header .section-title {
      color: #ffffff;
    }

    .industries-header .section-subtitle {
      color: #94a3b8;
      margin: 0 auto;
    }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .industry-card {
      background-color: #132238;
      border: 1px solid #1e3758;
      border-radius: 12px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s;
    }

    .industry-card:hover {
      background-color: #ff5e57;
      border-color: #ff5e57;
      transform: translateY(-4px);
    }

    .industry-card-icon {
      width: 56px;
      height: 56px;
      background-color: #0a1628;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      transition: background-color 0.3s;
    }

    .industry-card:hover .industry-card-icon {
      background-color: #e04e48;
    }

    .industry-card-icon svg {
      width: 26px;
      height: 26px;
      stroke: #ff5e57;
      fill: none;
      stroke-width: 2;
      transition: stroke 0.3s;
    }

    .industry-card:hover .industry-card-icon svg {
      stroke: #ffffff;
    }

    .industry-card-title {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      transition: color 0.3s;
    }

    /* ========== STATS ========== */
    .stats {
      padding: 80px 0;
      background-color: #ff5e57;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      text-align: center;
    }

    .stat-item-number {
      font-size: 52px;
      font-weight: 900;
      color: #ffffff;
      line-height: 1;
      margin-bottom: 8px;
      letter-spacing: -0.03em;
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 4px;
    }

    .stat-item-suffix {
      font-size: 28px;
      font-weight: 700;
      color: #ffedec;
    }

    .stat-item-label {
      font-size: 15px;
      font-weight: 600;
      color: #ffedec;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ========== TESTIMONIALS ========== */
    .testimonials {
      padding: 100px 0;
      background-color: #f8fafc;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .testimonials-header .section-subtitle {
      margin: 0 auto;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .testimonial-card {
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      padding: 36px 32px;
      transition: all 0.3s;
    }

    .testimonial-card:hover {
      box-shadow: 0 12px 36px rgba(10, 22, 40, 0.08);
      border-color: #cbd5e1;
    }

    .testimonial-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 20px;
    }

    .testimonial-star {
      width: 18px;
      height: 18px;
      fill: #f0b429;
      stroke: none;
    }

    .testimonial-quote {
      font-size: 15px;
      line-height: 1.7;
      color: #334155;
      margin-bottom: 24px;
      font-style: italic;
    }

    .testimonial-quote::before {
      content: '\201C';
      font-size: 48px;
      color: #ff5e57;
      line-height: 1;
      display: block;
      margin-bottom: 8px;
      font-style: normal;
      font-weight: 900;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
      border-top: 1px solid #e2e8f0;
      padding-top: 20px;
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background-color: #0a1628;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 18px;
      color: #ffffff;
      flex-shrink: 0;
    }

    .testimonial-name {
      font-size: 15px;
      font-weight: 700;
      color: #0a1628;
    }

    .testimonial-role {
      font-size: 13px;
      color: #64748b;
    }

    /* ========== CONTACT ========== */
    .contact {
      padding: 100px 0;
      background-color: #ffffff;
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 28px;
    }

    .contact-info-icon {
      width: 46px;
      height: 46px;
      background-color: #f8fafc;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-info-icon svg {
      width: 20px;
      height: 20px;
      stroke: #ff5e57;
      fill: none;
      stroke-width: 2;
    }

    .contact-info-label {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #94a3b8;
      margin-bottom: 4px;
    }

    .contact-info-value {
      font-size: 16px;
      font-weight: 600;
      color: #0a1628;
    }

    .contact-form {
      background-color: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      padding: 36px;
    }

    .contact-form-title {
      font-size: 20px;
      font-weight: 700;
      color: #0a1628;
      margin-bottom: 24px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #334155;
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      font-size: 15px;
      font-family: inherit;
      color: #1e293b;
      background-color: #ffffff;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: #ff5e57;
      box-shadow: 0 0 0 3px rgba(255, 94, 87, 0.1);
    }

    .form-group textarea {
      min-height: 130px;
      resize: vertical;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-submit {
      width: 100%;
      background-color: #ff5e57;
      color: #ffffff;
      border: none;
      padding: 14px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
    }

    .form-submit:hover {
      background-color: #e04e48;
      box-shadow: 0 6px 20px rgba(255, 94, 87, 0.3);
    }

    /* ========== FOOTER ========== */
    .footer {
      background-color: #0a1628;
      padding: 72px 0 0;
      color: #94a3b8;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
    }

    .footer-brand-desc {
      font-size: 15px;
      line-height: 1.7;
      color: #94a3b8;
      margin-bottom: 20px;
      margin-top: 16px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 38px;
      height: 38px;
      background-color: #132238;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s;
      text-decoration: none;
    }

    .footer-social a:hover {
      background-color: #ff5e57;
    }

    .footer-social svg {
      width: 18px;
      height: 18px;
      fill: #94a3b8;
    }

    .footer-social a:hover svg {
      fill: #ffffff;
    }

    .footer-col-title {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .footer-col-links {
      list-style: none;
    }

    .footer-col-links li {
      margin-bottom: 12px;
    }

    .footer-col-links a {
      font-size: 15px;
      color: #94a3b8;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col-links a:hover {
      color: #ff5e57;
    }

    .footer-bottom {
      border-top: 1px solid #1e3758;
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-copyright {
      font-size: 14px;
      color: #64748b;
    }

    .footer-legal {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .footer-legal a {
      font-size: 14px;
      color: #94a3b8;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .footer-legal a:hover {
      color: #ff5e57;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-visual {
        order: -1;
      }

      .hero-card {
        max-width: 100%;
      }

      .hero-title {
        font-size: 42px;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }

      .process-steps::before {
        display: none;
      }

      .industries-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }

      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        justify-self: center;
      }

      .contact-inner {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .section-title {
        font-size: 34px;
      }

      .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background-color: #0a1628;
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        border-top: 1px solid #1e3758;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-toggle {
        display: flex;
      }

      .hero {
        padding: 60px 0 80px;
      }

      .hero-title {
        font-size: 36px;
      }

      .hero-desc {
        font-size: 16px;
      }

      .hero-pattern {
        width: 350px;
        height: 350px;
        top: -30px;
        right: -60px;
      }

      .hero-grid {
        display: none;
      }

      .hero-card {
        padding: 28px;
      }

      .hero-card-number {
        font-size: 48px;
      }

      .hero-card-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .about-features {
        grid-template-columns: 1fr;
      }

      .process-steps {
        grid-template-columns: 1fr;
      }

      .industries-grid {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stat-item-number {
        font-size: 40px;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .footer-legal {
        justify-content: center;
      }

      .section-title {
        font-size: 30px;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 30px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }

      .section-title {
        font-size: 26px;
      }
    }
  