
@font-face{
    font-family: "Sharp Grotesk PE Trial Bold 21";
    src: url("618ca6a384803c26bc5e9168d7152cd8.eot");
    src: url("618ca6a384803c26bc5e9168d7152cd8.eot?#iefix")format("embedded-opentype"),
        url("618ca6a384803c26bc5e9168d7152cd8.woff")format("woff"),
        url("618ca6a384803c26bc5e9168d7152cd8.woff2")format("woff2"),
        url("618ca6a384803c26bc5e9168d7152cd8.ttf")format("truetype"),
        url("618ca6a384803c26bc5e9168d7152cd8.svg#Sharp Grotesk PE Trial Bold 21")format("svg");
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}

  :root {
    --blue: #1a3a8f;
    --blue-dark: #0f2660;
    --blue-mid: #1e4eb5;
    --blue-light: #2563d0;
    --gray: #6b7280;
    --light: #f0f4ff;
    --white: #ffffff;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: Sharpgrotesk, Helvetica Neue, sans-serif; color: #1a1a2e; background: #fff; }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 999;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
    padding: 0 40px;
    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 img { height: 48px; width: auto; object-fit: contain; }
  .logo-mark { font-size: 26px; font-weight: 900; color: var(--blue); letter-spacing: -1px; }
  .logo-sub { font-size: 9px; color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.2; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { text-decoration: none; color: #374151; font-size: 14px; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--blue-light); }
  .nav-cta {
    background: var(--blue); color: #fff; padding: 10px 22px;
    border-radius: 6px; font-size: 14px; font-weight: 600;
    text-decoration: none; transition: background .2s;
  }
  .nav-cta:hover { background: var(--blue-light); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1100; padding: 4px; }
  .hamburger span { width: 26px; height: 2.5px; background: var(--blue); border-radius: 2px; transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s; display: block; }

  /* ── Full-screen mobile drawer ── */
  .mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    pointer-events: none;
  }
  /* dark overlay */
  .mobile-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,22,60,0.55);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .35s ease;
  }
  /* sliding panel */
  .mobile-drawer-panel {
    position: absolute;
    top: 0; right: 0;
    width: min(340px, 88vw);
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.18);
    overflow-y: auto;
  }
  /* open state */
  .drawer-open .mobile-drawer          { pointer-events: all; display: block; }
  .drawer-open .mobile-drawer-overlay  { opacity: 1; }
  .drawer-open .mobile-drawer-panel    { transform: translateX(0); }
  .drawer-open .hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .drawer-open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .drawer-open .hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* drawer header */
  .drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
  }
  .drawer-header img { height: 40px; width: auto; }
  .drawer-close {
    width: 36px; height: 36px; border: none; background: #f3f4f6;
    border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #374151; transition: background .2s;
  }
  .drawer-close:hover { background: #e5e7eb; }

  /* nav links inside drawer */
  .drawer-nav {
    flex: 1;
    padding: 12px 0;
    list-style: none;
  }
  .drawer-nav li a {
    display: flex; align-items: center; gap: 12px;
    padding: 15px 24px;
    font-size: 16px; font-weight: 600; color: #1a1a2e;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background .15s, border-color .15s, color .15s;
  }
  .drawer-nav li a:hover {
    background: var(--light);
    border-left-color: var(--blue-light);
    color: var(--blue);
  }
  .drawer-nav li a .dnav-icon {
    width: 34px; height: 34px; border-radius: 8px;
    background: var(--light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .15s;
  }
  .drawer-nav li a:hover .dnav-icon { background: var(--blue); }
  .drawer-nav li a:hover .dnav-icon svg { stroke: #fff; }

  /* CTA buttons */
  .drawer-ctas {
    padding: 16px 24px;
    display: flex; flex-direction: column; gap: 10px;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
  }
  .drawer-btn-primary {
    display: block; text-align: center;
    background: var(--blue); color: #fff;
    padding: 14px; border-radius: 10px;
    font-size: 15px; font-weight: 700; text-decoration: none;
    transition: background .2s;
  }
  .drawer-btn-primary:hover { background: var(--blue-light); }
  .drawer-btn-outline {
    display: block; text-align: center;
    background: transparent; color: var(--blue);
    border: 2px solid var(--blue);
    padding: 12px; border-radius: 10px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    transition: background .2s, color .2s;
  }
  .drawer-btn-outline:hover { background: var(--light); }

  /* contact strip at bottom */
  .drawer-contact {
    padding: 16px 24px 24px;
    display: flex; flex-direction: column; gap: 12px;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
    background: var(--light);
  }
  .drawer-contact-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: #374151; text-decoration: none;
    font-weight: 500;
  }
  .drawer-contact-item .dc-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--blue); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-mid) 100%);
    display: flex; align-items: center;
    padding: 120px 80px 80px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; right: -100px; top: -100px;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute; right: 200px; bottom: -150px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
  }
  .hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    width: 100%; position: relative; z-index: 1;
  }
  .hero-content {  }
  .hero-visual { display: flex; align-items: center; justify-content: center; }
  .hero-visual img {
    width: 100%; max-width: 520px;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
    animation: floatY 4s ease-in-out infinite;
    border-radius: 20px;
  }
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }
  .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 12px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
  }
  .hero h1 {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800; color: #fff; line-height: 1.1;
    margin-bottom: 20px;
  }
  .hero h1 span { color: #7eb3ff; }
  .hero p {
    font-size: 18px; color: rgba(255,255,255,0.8);
    line-height: 1.7; margin-bottom: 36px; max-width: 500px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: #fff; color: var(--blue);
    padding: 14px 28px; border-radius: 8px;
    font-size: 15px; font-weight: 700;
    text-decoration: none; transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
  .btn-outline {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 28px; border-radius: 8px;
    font-size: 15px; font-weight: 600;
    text-decoration: none; transition: border-color .2s, background .2s;
  }
  .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
  .hero-stats {
    display: flex; gap: 48px; margin-top: 60px;
    padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15);
  }
  .stat-num { font-size: 32px; font-weight: 800; color: #fff; }
  .stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

  /* ICONS */
  .icon-svg { display:inline-flex; align-items:center; justify-content:center; }
  .icon-svg svg { display:block; }
  .service-icon .icon-svg svg { width:28px; height:28px; }
  .feature-chip .icon-svg svg { width:20px; height:20px; }
  .contact-icon .icon-svg svg { width:22px; height:22px; }
  .industry-chip .icon-svg svg { width:22px; height:22px; flex-shrink:0; }

  /* SECTION COMMON */
  section { padding: 100px 80px; }
  .section-label {
    font-size: 12px; font-weight: 700; color: var(--blue-light);
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800; color: var(--blue-dark); line-height: 1.2; margin-bottom: 16px;
  }
  .section-sub {
    font-size: 17px; color: var(--gray); line-height: 1.7; max-width: 580px;
  }
  .section-header { margin-bottom: 60px; }
  .section-header.center { text-align: center; }
  .section-header.center .section-sub { margin: 0 auto; }

  /* ABOUT */
  .about { background: var(--light); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-visual {
    border-radius: 20px; overflow: hidden;
    position: relative; min-height: 460px;
    display: flex; align-items: flex-end;
  }
  .about-visual-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; filter: brightness(0.55);
  }
  .about-visual-overlay {
    position: relative; z-index: 1;
    padding: 36px 32px; width: 100%;
    background: linear-gradient(0deg, rgba(10,30,80,0.85) 0%, transparent 100%);
  }
  .about-visual-overlay h3 { font-size: 22px; color: #fff; font-weight: 700; margin-bottom: 10px; }
  .about-visual-overlay p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.6; }
  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
  .feature-chip {
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px; padding: 12px 14px; text-align: left;
  }
  .feature-chip .icon { font-size: 18px; margin-bottom: 4px; }
  .feature-chip p { font-size: 12px; color: rgba(255,255,255,0.9); font-weight: 600; }
  .about-text .check-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
  .about-text .check-list li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 15px; color: #374151; line-height: 1.5;
  }
  .check-list li::before {
    content: '✓'; min-width: 22px; height: 22px;
    background: var(--blue); color: #fff;
    border-radius: 50%; font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
  }

  /* MAIN SERVICES */
  .services { background: #fff; }
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .service-card {
    background: #fff; border: 1px solid #e5e7eb;
    border-radius: 16px; padding: 36px 28px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    cursor: pointer;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(26,58,143,0.12);
    border-color: var(--blue-light);
  }
  .service-icon {
    width: 58px; height: 58px; border-radius: 14px;
    background: var(--light); display: flex; align-items: center;
    justify-content: center; font-size: 26px; margin-bottom: 20px;
    transition: background .3s;
  }
  .service-card:hover .service-icon { background: var(--blue); }
  .service-card:hover .service-icon svg { stroke: #fff; }
  .service-card h3 { font-size: 19px; font-weight: 700; color: var(--blue-dark); margin-bottom: 12px; }
  .service-card p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 20px; }
  .service-link {
    font-size: 13px; font-weight: 700; color: var(--blue-light);
    text-decoration: none; display: flex; align-items: center; gap: 6px;
  }
  .service-link::after { content: '→'; transition: transform .2s; }
  .service-card:hover .service-link::after { transform: translateX(4px); }

  /* TABS */
  .tabs-section { background: var(--light); }
  .tabs-nav {
    display: flex; gap: 8px;
    background: #fff; border-radius: 12px;
    padding: 6px; margin-bottom: 48px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    width: fit-content;
  }
  .tab-btn {
    padding: 12px 28px; border-radius: 8px;
    border: none; background: transparent;
    font-size: 15px; font-weight: 600; color: var(--gray);
    cursor: pointer; transition: all .2s; font-family: inherit;
  }
  .tab-btn.active { background: var(--blue); color: #fff; }
  .tab-btn:hover:not(.active) { background: var(--light); color: var(--blue-dark); }
  .tab-content { display: none; }
  .tab-content.active { display: block; animation: fadeIn .25s ease; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
  .tab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .tab-item {
    border-radius: 16px; overflow: hidden;
    position: relative; min-height: 240px;
    display: flex; align-items: flex-end;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: transform .3s, box-shadow .3s;
  }
  .tab-item:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.2); }
  .tab-item-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; transition: transform .4s;
  }
  .tab-item:hover .tab-item-bg { transform: scale(1.05); }
  .tab-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(10,28,80,0.88) 0%, rgba(10,28,80,0.35) 55%, transparent 100%);
  }
  .tab-item-content { position: relative; z-index: 1; padding: 24px 22px; width: 100%; }
  .tab-item-tag {
    display: inline-block; background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff; font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 20px; margin-bottom: 10px;
  }
  .tab-item h4 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 6px; }
  .tab-item p { font-size: 13px; color: rgba(255,255,255,0.82); line-height: 1.55; }

  /* PLANS */
  .plans { background: #fff; }
  .plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .plan-card {
    border: 1.5px solid #e5e7eb; border-radius: 20px;
    padding: 40px 32px; position: relative;
    transition: transform .3s, box-shadow .3s;
  }
  .plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,58,143,0.1); }
  .plan-card.popular { border-color: var(--blue); background: var(--blue-dark); }
  .plan-popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--blue-light); color: #fff; font-size: 11px;
    font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 16px; border-radius: 20px;
  }
  .plan-name { font-size: 14px; font-weight: 700; color: var(--blue-light); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
  .plan-card.popular .plan-name { color: #7eb3ff; }
  .plan-price { font-size: 42px; font-weight: 800; color: var(--blue-dark); margin: 12px 0 4px; }
  .plan-card.popular .plan-price { color: #fff; }
  .plan-period { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
  .plan-card.popular .plan-period { color: rgba(255,255,255,0.6); }
  .plan-divider { height: 1px; background: #e5e7eb; margin-bottom: 24px; }
  .plan-card.popular .plan-divider { background: rgba(255,255,255,0.15); }
  .plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .plan-features li { font-size: 14px; color: #374151; display: flex; gap: 10px; align-items: flex-start; }
  .plan-card.popular .plan-features li { color: rgba(255,255,255,0.85); }
  .plan-features li::before { content: '✓'; color: var(--blue-light); font-weight: 800; min-width: 16px; }
  .plan-card.popular .plan-features li::before { color: #7eb3ff; }
  .plan-btn {
    display: block; text-align: center; padding: 14px;
    border-radius: 10px; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all .2s;
    background: var(--light); color: var(--blue);
  }
  .plan-btn:hover { background: var(--blue); color: #fff; }
  .plan-card.popular .plan-btn { background: #fff; color: var(--blue); }
  .plan-card.popular .plan-btn:hover { background: var(--blue-light); color: #fff; }

  /* REVIEWS */
  .reviews { background: var(--light); overflow: hidden; }
  .reviews-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }
  .google-badge {
    display: flex; align-items: center; gap: 16px;
    background: #fff; border: 1px solid #e5e7eb;
    border-radius: 16px; padding: 16px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .google-logo { display: flex; align-items: center; gap: 4px; }
  .google-logo span { font-size: 22px; font-weight: 700; }
  .google-logo .g-b { color: #4285F4; }
  .google-logo .g-r { color: #EA4335; }
  .google-logo .g-y { color: #FBBC05; }
  .google-logo .g-g { color: #34A853; }
  .badge-score { font-size: 36px; font-weight: 900; color: var(--blue-dark); line-height: 1; }
  .badge-stars { display: flex; gap: 3px; margin: 4px 0; }
  .badge-stars svg { fill: #FBBC05; stroke: none; }
  .badge-count { font-size: 13px; color: var(--gray); }
  .reviews-track-wrap { position: relative; overflow: hidden; }
  .reviews-track-wrap::before,
  .reviews-track-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
  }
  .reviews-track-wrap::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
  .reviews-track-wrap::after { right: 0; background: linear-gradient(to left, var(--light), transparent); }
  .reviews-track {
    display: flex; gap: 20px;
    animation: scrollReviews 40s linear infinite;
    width: max-content;
  }
  .reviews-track:hover { animation-play-state: paused; }
  @keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .review-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
    padding: 24px 28px; width: 320px; flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow .2s, transform .2s;
  }
  .review-card:hover { box-shadow: 0 8px 28px rgba(26,58,143,0.12); transform: translateY(-3px); }
  .review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 800; color: #fff; flex-shrink: 0;
  }
  .review-name { font-size: 15px; font-weight: 700; color: var(--blue-dark); }
  .review-date { font-size: 12px; color: var(--gray); margin-top: 2px; }
  .review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
  .review-stars svg { fill: #FBBC05; stroke: none; width: 16px; height: 16px; }
  .review-text { font-size: 14px; color: #374151; line-height: 1.65; }
  .review-google-icon { margin-left: auto; opacity: 0.4; }

  /* INDUSTRIES */
  .industries { background: var(--light); }
  .industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .industry-chip {
    background: #fff; border: 1px solid #e5e7eb;
    border-radius: 12px; padding: 20px 24px;
    display: flex; align-items: center; gap: 14px;
    font-size: 15px; font-weight: 600; color: var(--blue-dark);
    transition: all .2s;
  }
  .industry-chip:hover { border-color: var(--blue); background: var(--blue); color: #fff; }
  .industry-chip:hover svg { stroke: #fff; }
  .industry-chip span:first-child { display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }

  /* GLOBAL */
  .global { background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid)); padding: 100px 80px; }
  .global-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .global h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 800; color: #fff; margin-bottom: 20px; }
  .global p { color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.7; margin-bottom: 32px; }
  .global-flags { display: flex; flex-wrap: wrap; gap: 10px; }
  .flag-chip {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600;
    padding: 8px 14px; border-radius: 20px;
  }
  .global-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .global-stat {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px; padding: 28px 24px; text-align: center;
  }
  .global-stat .num { font-size: 36px; font-weight: 800; color: #fff; }
  .global-stat .label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; }

  /* CONTACT */
  .contact { background: #fff; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
  .contact-info { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; }
  .contact-icon {
    min-width: 48px; height: 48px; background: var(--light);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
  }
  .contact-item h4 { font-size: 14px; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
  .contact-item p, .contact-item a { font-size: 15px; color: var(--gray); text-decoration: none; }
  .contact-form { background: var(--light); border-radius: 20px; padding: 40px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
  .form-group label { font-size: 13px; font-weight: 600; color: var(--blue-dark); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px; border: 1.5px solid #e5e7eb;
    border-radius: 8px; font-size: 14px; color: #374151;
    background: #fff; transition: border-color .2s; outline: none;
    font-family: inherit;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--blue-light); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .btn-submit {
    width: 100%; padding: 15px; background: var(--blue);
    color: #fff; border: none; border-radius: 10px;
    font-size: 16px; font-weight: 700; cursor: pointer;
    transition: background .2s; font-family: inherit;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .btn-submit:hover { background: var(--blue-light); }
  .btn-submit:disabled { background: var(--gray); cursor: not-allowed; }

  /* Form feedback */
  .form-msg {
    display: none; padding: 14px 18px; border-radius: 10px;
    font-size: 14px; font-weight: 600; margin-bottom: 16px;
  }
  .form-msg.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; display: block; }
  .form-msg.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; display: block; }

  /* FOOTER */
  footer { background: var(--blue-dark); color: rgba(255,255,255,0.7); padding: 60px 80px 30px; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-brand .logo-mark { color: #fff; font-size: 28px; }
  .footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.7; }
  .footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color .2s; }
  .footer-col ul li a:hover { color: #fff; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
  .social-links { display: flex; gap: 12px; }
  .social-link {
    width: 36px; height: 36px; background: rgba(255,255,255,0.08);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: background .2s;
  }
  .social-link:hover { background: rgba(255,255,255,0.2); }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    section, .hero, footer, .global { padding-left: 40px; padding-right: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
  }
  @media (max-width: 768px) {
    section, .hero, footer, .global { padding-left: 24px; padding-right: 24px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .about-grid, .global-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .tab-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .global-visual { grid-template-columns: 1fr 1fr; }
    .reviews-header { flex-direction: column; align-items: flex-start; }
  }
  
  /* ── WhatsApp Floating Button ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-bubble {
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.wa-bubble:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.2);
}
/* pulse ring */
.wa-bubble::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2.5px solid rgba(37,211,102,0.5);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 1; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
/* tooltip label */
.wa-label {
  background: #fff;
  color: #1a1a2e;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.wa-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .wa-float { bottom: 20px; right: 16px; }
  .wa-bubble { width: 54px; height: 54px; }
}

/* LANGUAGE SWITCHER */
.lang-switcher { position: relative; display: flex; align-items: center; margin-right: 8px; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: 1.5px solid #e5e7eb;
  border-radius: 8px; padding: 7px 12px;
  font-size: 13px; font-weight: 600; color: #374151;
  cursor: pointer; transition: all .2s; font-family: inherit; white-space: nowrap;
}
.lang-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--light); }
.lang-btn .lang-arrow {
  width: 10px; height: 10px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .2s;
  display: inline-block; flex-shrink: 0;
}
.lang-switcher.open .lang-btn .lang-arrow { transform: rotate(-135deg) translateY(-2px); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12); min-width: 160px; overflow: hidden;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .2s, transform .2s; z-index: 1000;
}
.lang-switcher.open .lang-dropdown { opacity: 1; transform: translateY(0); pointer-events: all; }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; font-size: 14px; font-weight: 500;
  color: #374151; text-decoration: none; transition: background .15s;
}
.lang-option:hover { background: var(--light); color: var(--blue); }
.lang-option.active { background: var(--light); color: var(--blue); font-weight: 700; }
.lang-option .lang-flag { font-size: 18px; line-height: 1; }
.lang-option .lang-check { margin-left: auto; color: var(--blue); font-size: 13px; font-weight: 800; }
@media (max-width: 768px) { .lang-switcher { margin-right: 12px; } .lang-btn { padding: 6px 10px; font-size: 12px; } }