/* index styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.7;
      color: #1e293b;
      background: #ffffff;
      -webkit-font-smoothing: antialiased;
      padding-top: 72px;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    h1, h2, h3, h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: #0f172a;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    h1 { font-size: clamp(40px, 6vw, 64px); font-weight: 800; }
    h2 { font-size: clamp(32px, 4vw, 48px); }
    h3 { font-size: clamp(20px, 2.5vw, 24px); }

    p { color: #475569; font-size: clamp(15px, 1.8vw, 17px); }

    .accent-line {
      width: 48px;
      height: 4px;
      background: linear-gradient(90deg, #f59e0b, #f97316);
      border-radius: 2px;
      margin-bottom: 24px;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .section-header .accent-line {
      margin: 0 auto 24px;
    }

    .section-header p {
      margin-top: 16px;
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: #ffffff;
      padding: 16px 0;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    }

    .header-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-icon .material-icons {
      color: #ffffff;
      font-size: 24px;
    }

    .logo-text {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #0f172a;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: #475569;
      font-weight: 500;
      font-size: 15px;
      transition: color 0.3s ease;
    }

    .nav-links a:hover { color: #0369a1; }

    .header-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      background: linear-gradient(135deg, #f59e0b, #f97316);
      border-radius: 50px;
      color: #ffffff;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s ease;
    }

    .header-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    }

    .header-cta .material-icons { font-size: 18px; }

    /* Hero */
    .hero {
      background: linear-gradient(165deg, #0c4a6e 0%, #075985 40%, #0369a1 100%);
      color: #ffffff;
      padding: 80px 0 100px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 80%;
      height: 200%;
      background: radial-gradient(ellipse, rgba(251, 191, 36, 0.1) 0%, transparent 60%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-content h1 {
      color: #ffffff;
      margin-bottom: 24px;
    }

    .hero-content h1 span {
      color: #fbbf24;
    }

    .hero-content p {
      color: rgba(255, 255, 255, 0.9);
      font-size: clamp(17px, 2vw, 19px);
      margin-bottom: 32px;
      line-height: 1.8;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
      color: #0f172a;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(251, 191, 36, 0.4);
    }

    .cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: #ffffff;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .cta-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.5);
    }

    .hero-image {
      position: relative;
    }

    .hero-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hero-stat-number {
      font-size: 36px;
      font-weight: 800;
      color: #fbbf24;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .hero-stat-label {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }

    .stat-unit {
      font-size: 20px;
      font-weight: 600;
    }

    /* Hero Badges */
    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .hero-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }

    .hero-badge .material-icons {
      font-size: 18px;
      color: #22c55e;
    }

    /* Trust Bar - Bento Grid Design */
    .trust-bar {
      background: linear-gradient(165deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .trust-bar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 100%;
      background: radial-gradient(ellipse at center top, rgba(251, 191, 36, 0.06) 0%, transparent 50%);
    }

    .trust-bento {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto auto auto;
      gap: 20px;
      position: relative;
      z-index: 1;
    }

    .bento-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 28px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .bento-card:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-4px);
    }

    /* Main Feature Card - Spans 2 columns */
    .bento-main {
      grid-column: span 2;
      grid-row: span 2;
      padding: 40px;
      background: linear-gradient(135deg, rgba(3, 105, 161, 0.2) 0%, rgba(14, 165, 233, 0.1) 100%);
      border-color: rgba(14, 165, 233, 0.2);
    }

    .bento-main:hover {
      border-color: rgba(14, 165, 233, 0.4);
      box-shadow: 0 20px 60px rgba(14, 165, 233, 0.15);
    }

    .bento-glow {
      position: absolute;
      top: -50%;
      right: -30%;
      width: 80%;
      height: 150%;
      background: radial-gradient(ellipse, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
      pointer-events: none;
    }

    .bento-pattern {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 200px;
      height: 200px;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%230ea5e9" opacity="0.2"/></svg>') repeat;
      background-size: 20px 20px;
      opacity: 0.5;
      pointer-events: none;
    }

    .bento-content {
      position: relative;
      z-index: 1;
    }

    .bento-icon-wrap {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, #0ea5e9, #0284c7);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      box-shadow: 0 8px 32px rgba(14, 165, 233, 0.3);
    }

    .bento-icon-wrap .material-icons {
      font-size: 32px;
      color: #ffffff;
    }

    .bento-main h3 {
      font-size: 28px;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .bento-main h3 span {
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .bento-main > .bento-content > p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 32px;
      line-height: 1.7;
      max-width: 400px;
    }

    .bento-stats-row {
      display: flex;
      gap: 32px;
    }

    .mini-stat {
      display: flex;
      flex-direction: column;
    }

    .mini-stat-value {
      font-size: 28px;
      font-weight: 800;
      color: #ffffff;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .mini-stat-label {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Stats Card */
    .bento-stats {
      grid-column: span 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 32px 40px;
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
      border-color: rgba(251, 191, 36, 0.2);
    }

    .bento-stats:hover {
      border-color: rgba(251, 191, 36, 0.4);
      box-shadow: 0 20px 60px rgba(251, 191, 36, 0.1);
    }

    .bento-stat-big {
      display: flex;
      flex-direction: column;
    }

    .stat-number-xl {
      font-size: 56px;
      font-weight: 800;
      color: #fbbf24;
      font-family: 'Plus Jakarta Sans', sans-serif;
      line-height: 1;
    }

    .stat-label-xl {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 8px;
    }

    .bento-stat-ring {
      position: relative;
      width: 120px;
      height: 120px;
    }

    .bento-stat-ring svg {
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
    }

    .ring-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
    }

    .ring-value {
      font-size: 32px;
      font-weight: 800;
      color: #ffffff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      display: block;
    }

    .ring-label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Feature Cards (Residential/Commercial) */
    .bento-feature {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 180px;
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.08) 100%);
      border-color: rgba(34, 197, 94, 0.2);
    }

    .bento-feature:hover {
      border-color: rgba(34, 197, 94, 0.4);
      box-shadow: 0 20px 60px rgba(34, 197, 94, 0.1);
    }

    .bento-feature:hover .feature-icon-float {
      transform: scale(1.1);
    }

    .bento-commercial {
      background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
      border-color: rgba(168, 85, 247, 0.2);
    }

    .bento-commercial:hover {
      border-color: rgba(168, 85, 247, 0.4);
      box-shadow: 0 20px 60px rgba(168, 85, 247, 0.1);
    }

    .feature-icon-float {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .feature-icon-float .material-icons {
      font-size: 24px;
      color: #ffffff;
    }

    .bento-feature h4 {
      font-size: 20px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
    }

    .bento-feature p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 16px;
      line-height: 1.5;
    }

    .feature-tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 12px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50px;
      font-size: 11px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      width: fit-content;
    }

    /* Licensed Card */
    .bento-licensed {
      grid-column: span 2;
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 28px 32px;
    }

    .licensed-badge {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #22c55e, #16a34a);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
    }

    .licensed-badge .material-icons {
      font-size: 28px;
      color: #ffffff;
    }

    .licensed-content {
      flex: 1;
    }

    .licensed-content h4 {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 4px;
    }

    .licensed-content p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      margin: 0;
      line-height: 1.5;
    }

    .licensed-icons {
      display: flex;
      gap: 8px;
    }

    .cert-icon {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cert-icon .material-icons {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.4);
    }

    /* CTA Card */
    .bento-cta {
      grid-column: span 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 32px;
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
      border: none;
    }

    .bento-cta:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(251, 191, 36, 0.3);
    }

    .cta-content {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .cta-content > .material-icons {
      font-size: 36px;
      color: #0f172a;
    }

    .cta-content h4 {
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 2px;
    }

    .cta-content p {
      font-size: 14px;
      color: rgba(15, 23, 42, 0.7);
      margin: 0;
    }

    .bento-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: #0f172a;
      color: #ffffff;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .bento-cta-btn:hover {
      background: #1e293b;
      transform: scale(1.05);
    }

    .bento-cta-btn .material-icons {
      font-size: 18px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .trust-bento {
        grid-template-columns: repeat(2, 1fr);
      }
      .bento-main {
        grid-column: span 2;
        grid-row: span 1;
      }
      .bento-stats {
        grid-column: span 2;
      }
      .bento-feature {
        grid-column: span 1;
      }
      .bento-licensed {
        grid-column: span 2;
      }
      .bento-cta {
        grid-column: span 2;
      }
    }

    @media (max-width: 768px) {
      .trust-bar {
        padding: 60px 0;
      }
      .trust-bento {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .bento-main, .bento-stats, .bento-feature, .bento-licensed, .bento-cta {
        grid-column: span 1;
      }
      .bento-main {
        padding: 28px;
      }
      .bento-main h3 {
        font-size: 24px;
      }
      .bento-stats {
        flex-direction: column;
        gap: 24px;
        text-align: center;
      }
      .bento-stat-big {
        align-items: center;
      }
      .stat-number-xl {
        font-size: 48px;
      }
      .bento-licensed {
        flex-direction: column;
        text-align: center;
      }
      .licensed-icons {
        justify-content: center;
      }
      .bento-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }
      .cta-content {
        flex-direction: column;
      }
    }

    /* Services */
    section { padding: 100px 0; }
    .light-bg { background: #f8fafc; }

    .services-section {
      background: #f8fafc;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: #ffffff;
      padding: 40px 32px;
      border-radius: 20px;
      border: 1px solid #e2e8f0;
      text-align: center;
      transition: all 0.3s ease;
      text-decoration: none;
      display: block;
      cursor: pointer;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
      border-color: #0284c7;
    }

    .service-card h3 {
      color: #0f172a;
    }

    .service-card p {
      color: #475569;
    }

    .service-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, #e0f2fe, #bae6fd);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }

    .service-icon .material-icons {
      font-size: 36px;
      color: #0369a1;
    }

    .service-card h3 { margin-bottom: 12px; }
    .service-card p { margin-bottom: 20px; }

    .service-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 20px;
      background: linear-gradient(135deg, #f59e0b, #f97316);
      color: #ffffff;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .service-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    }

    .service-cta .material-icons { font-size: 18px; }

    /* Why Choose Us */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .why-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    }

    .why-list {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .why-item {
      display: flex;
      gap: 20px;
    }

    .why-item-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #fef3c7, #fde68a);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .why-item-icon .material-icons {
      font-size: 28px;
      color: #d97706;
    }

    .why-item h4 {
      font-size: 18px;
      margin-bottom: 6px;
    }

    .why-item p { margin: 0; font-size: 15px; }

    .why-intro {
      font-size: 17px;
      color: #64748b;
      margin-bottom: 32px;
    }

    /* Benefits Section - Premium Design */
    .benefits-section {
      background: linear-gradient(165deg, #0f172a 0%, #1e293b 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .benefits-section::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      height: 100%;
      background: radial-gradient(ellipse at top right, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
    }

    .benefits-section::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40%;
      height: 60%;
      background: radial-gradient(ellipse at bottom left, rgba(14, 165, 233, 0.06) 0%, transparent 60%);
    }

    .benefits-layout {
      position: relative;
      z-index: 1;
    }

    .benefits-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .benefits-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(251, 191, 36, 0.15);
      border: 1px solid rgba(251, 191, 36, 0.3);
      padding: 10px 20px;
      border-radius: 50px;
      color: #fbbf24;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 24px;
    }

    .benefits-badge .material-icons {
      font-size: 18px;
    }

    .benefits-header h2 {
      color: #ffffff;
      margin-bottom: 16px;
    }

    .benefits-header h2 span {
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .benefits-header p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 18px;
      line-height: 1.7;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .benefit-card {
      position: relative;
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      padding: 32px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
    }

    .benefit-card::before {
      content: attr(data-number);
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 48px;
      font-weight: 800;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: rgba(255, 255, 255, 0.03);
      line-height: 1;
    }

    .benefit-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(251, 191, 36, 0.3);
      transform: translateY(-8px);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    }

    .benefit-card:hover .benefit-icon {
      transform: scale(1.1);
      box-shadow: 0 12px 24px rgba(251, 191, 36, 0.3);
    }

    .benefit-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 16px rgba(251, 191, 36, 0.2);
    }

    .benefit-icon .material-icons {
      font-size: 28px;
      color: #0f172a;
    }

    .benefit-content h4 {
      font-size: 20px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .benefit-content p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      margin: 0;
      line-height: 1.7;
    }

    /* Featured Card - spans 2 columns */
    .benefit-card.featured {
      grid-column: span 2;
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
      border-color: rgba(251, 191, 36, 0.2);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 24px;
      padding: 32px 40px;
    }

    .benefit-card.featured .benefit-icon {
      margin-bottom: 0;
      width: 72px;
      height: 72px;
    }

    .benefit-card.featured .benefit-icon .material-icons {
      font-size: 36px;
    }

    .benefit-card.featured .benefit-content h4 {
      font-size: 22px;
      margin-bottom: 8px;
    }

    .benefit-tag {
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
      color: #0f172a;
      font-size: 12px;
      font-weight: 700;
      padding: 8px 16px;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      white-space: nowrap;
    }

    /* Staggered hover states */
    .benefit-card:nth-child(1):hover { border-color: #fbbf24; }
    .benefit-card:nth-child(2):hover { border-color: #22c55e; }
    .benefit-card:nth-child(3):hover { border-color: #0ea5e9; }
    .benefit-card:nth-child(4):hover { border-color: #a855f7; }

    .section-header.centered {
      text-align: center;
    }

    @media (max-width: 1024px) {
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .benefit-card.featured {
        grid-column: span 2;
      }
    }

    @media (max-width: 768px) {
      .benefits-grid {
        grid-template-columns: 1fr;
      }
      .benefit-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
      }
      .benefit-card.featured .benefit-icon {
        margin: 0 auto 20px;
      }
      .benefit-tag {
        margin-top: 16px;
      }
      .benefits-section {
        padding: 80px 0;
      }
      .benefits-header {
        margin-bottom: 40px;
      }
    }

    /* Stats */
    .stats-section {
      background: linear-gradient(165deg, #0f172a 0%, #1e293b 100%);
      padding: 80px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      text-align: center;
    }

    .stat-item .stat-number {
      font-size: 48px;
      font-weight: 800;
      color: #fbbf24;
      font-family: 'Plus Jakarta Sans', sans-serif;
      margin-bottom: 8px;
    }

    .stat-item .stat-label {
      color: rgba(255, 255, 255, 0.7);
      font-size: 15px;
    }

    /* Service Areas - Dark Theme */
    .states-section {
      background: linear-gradient(165deg, #0f172a 0%, #1e293b 100%);
      padding: 100px 0;
    }

    .states-section .section-header h2 {
      color: #ffffff;
    }

    .states-section .section-header p {
      color: rgba(255, 255, 255, 0.7);
    }

    .states-section .accent-line {
      background: linear-gradient(90deg, #f59e0b, #f97316);
    }

    .states-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }

    .state-badge {
      padding: 12px 24px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      color: #ffffff;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .state-badge:hover {
      background: linear-gradient(135deg, #f59e0b, #f97316);
      color: #0f172a;
      border-color: transparent;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(165deg, #0c4a6e 0%, #075985 100%);
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 150%;
      height: 100%;
      background: radial-gradient(ellipse at center top, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    }

    .cta-section-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-section h2 {
      color: #ffffff;
      margin-bottom: 20px;
    }

    .cta-section p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 18px;
      margin-bottom: 40px;
    }

    .cta-section .cta-primary {
      padding: 20px 40px;
      font-size: 18px;
    }

    /* Footer */
    .footer {
      background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
      color: #ffffff;
      padding: 80px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand .logo { margin-bottom: 20px; }
    .footer-brand .logo-text { color: #ffffff; }
    .footer-brand p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 15px;
      margin-bottom: 24px;
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-contact a {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 15px;
    }

    .footer-contact a:hover { color: #fbbf24; }
    .footer-contact .material-icons { font-size: 18px; color: #f59e0b; }

    .footer-column h4 {
      color: #ffffff;
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 24px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 15px;
    }

    .footer-links a:hover { color: #fbbf24; }

    .footer-bottom {
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copyright { color: rgba(255, 255, 255, 0.5); font-size: 14px; }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 14px;
    }

    .footer-legal a:hover { color: #fbbf24; }

    /* Mobile */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; text-align: center; }
      .hero-image { display: none; }
      .hero-stats { justify-content: center; }
      .hero-badges { justify-content: center; }
      .hero-ctas { justify-content: center; }
      .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .why-grid { grid-template-columns: 1fr; }
      .why-image { order: -1; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 900px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .hero-ctas { justify-content: center; }
      .hero-stats { flex-direction: row; justify-content: center; gap: 40px; }
      .hero-badges { flex-direction: column; align-items: center; }
      .benefit-card { width: 100%; justify-content: center; }
      section { padding: 64px 0; }
    }

    html { scroll-behavior: smooth; }