
  :root {
    --teal-deep: #0d3d42;
    --teal-dark: #145c63;
    --teal-mid: #1e7d87;
    --teal-light: #2a9aaa;
    --sand: #c9a97a;
    --sand-light: #e8d5b5;
    --sand-pale: #f5ede0;
    --cream: #f4f8f8;
    --cream-warm: #edf5f6;
    --white: #fafcfc;
    --text-dark: #0d2e33;
    --text-mid: #254a50;
    --text-light: #5a7a80;
    --radius-card: 24px;
    --radius-btn: 100px;
    --shadow: 0 4px 40px rgba(13,61,66,0.12);
    /* legacy aliases so nothing breaks */
    --green-deep: #0d3d42;
    --green-dark: #145c63;
    --green-mid: #1e7d87;
    --green-light: #2a9aaa;
    --lime: #c9a97a;
    --lime-dark: #b8935f;
  }

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

  html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
  }

  body {
    font-family: 'Tajawal', sans-serif;
    background: var(--teal-deep);
    color: var(--text-dark);
    direction: rtl;
    overflow-x: hidden;
  }

  /* ── OUTER FRAME ── */
  .site-frame {
    margin: 12px;
    background: var(--cream);
    border-radius: 28px;
    overflow: hidden;
    min-height: 100vh;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 12px;
    right: 12px;
    left: 12px;
    z-index: 1000;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(244,248,248,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid rgba(13,61,66,0.08);
    transition: all 0.3s ease;
  }

  nav.scrolled {
    background: rgba(244,248,248,0.98);
    box-shadow: 0 4px 30px rgba(13,61,66,0.15);
    border-radius: 20px;
    top: 16px;
  }

  .nav-logo {
    font-size: 22px;
    font-weight: 900;
    color: var(--teal-deep);
    letter-spacing: -0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 81px;
    height: 54px;
    overflow: hidden;
  }

  .nav-logo img {
    height: 54px !important;
    width: auto !important;
    max-width: none;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }

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

  .nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .nav-links a:hover {
    background: var(--teal-deep);
    color: var(--cream);
  }

  .nav-links a.active {
    color: var(--teal-deep);
    font-weight: 800;
    background: transparent;
  }

  .nav-links a.active:hover {
    background: transparent;
    color: var(--teal-deep);
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--teal-deep);
    color: var(--cream);
    padding: 12px 24px;
    border-radius: var(--radius-btn);
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--teal-mid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 0;
  }

  .btn-primary:hover::before { transform: scaleX(1); }
  .btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

  .btn-arrow {
    width: 28px;
    height: 28px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

  .btn-primary:hover .btn-arrow { transform: translateX(-4px); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--teal-deep);
    padding: 12px 24px;
    border-radius: var(--radius-btn);
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--teal-deep);
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .btn-outline:hover {
    background: var(--teal-deep);
    color: var(--cream);
  }

  /* ── HERO ── */
  .hero {
    padding: 140px 60px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13,61,66,0.08);
    border: 1px solid rgba(13,61,66,0.12);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-mid);
    margin-bottom: 32px;
  }

  .hero-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--sand-dark, #b8935f);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .hero-title {
    font-size: clamp(42px, 6vw, 88px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--teal-deep);
    margin-bottom: 28px;
    letter-spacing: -1px;
  }

  .hero-title .accent {
    color: var(--teal-mid);
    font-style: italic;
    font-family: 'Playfair Display', serif;
  }

  .hero-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 400;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.8;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 72px;
    flex-wrap: wrap;
  }

  .hero-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow);
  }

  .hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
  }

  .hero-image-wrap:hover img { transform: scale(1); }

  /* Hero placeholder image */
  .img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--teal-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
  }

  .img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255,255,255,0.03) 10px,
      rgba(255,255,255,0.03) 20px
    );
  }

  .img-placeholder .label {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: rgba(240,245,232,0.5);
    letter-spacing: 0.05em;
    text-align: center;
    direction: ltr;
    position: relative;
    z-index: 1;
  }

  /* ── MARQUEE STRIP ── */
  .marquee-section {
    background: var(--teal-deep);
    padding: 18px 0;
    overflow: hidden;
    border-radius: 0;
  }

  .marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    align-items: center;
  }

  .marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(244,248,248,0.6);
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
  }

  .marquee-dot {
    width: 6px; height: 6px;
    background: var(--sand);
    border-radius: 50%;
    flex-shrink: 0;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── SECTION BASE ── */
  section {
    padding: 100px 60px;
  }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal-mid);
    margin-bottom: 20px;
  }

  .section-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sand-dark, #b8935f);
  }

  .section-title {
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 900;
    color: var(--teal-deep);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
  }

  .section-title .italic {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
  }

  .section-body {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 520px;
  }

  /* ── ABOUT SECTION ── */
  .about-section {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-image {
    position: relative;
    height: 540px;
    border-radius: var(--radius-card);
    overflow: hidden;
    order: 2;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .stat-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(13,61,66,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13,61,66,0.1);
  }

  .stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--teal-deep);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
  }

  /* ── SERVICES SECTION ── */
  .services-section {
    background: var(--teal-deep);
    border-radius: 28px;
    margin: 0 0 0 0;
    color: var(--cream);
  }

  .services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
    flex-wrap: wrap;
  }

  .services-section .section-tag { color: var(--sand); }
  .services-section .section-title { color: var(--cream); }

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

  .service-card {
    background: rgba(244,248,248,0.06);
    border: 1px solid rgba(244,248,248,0.1);
    border-radius: 20px;
    padding: 36px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--cream);
    display: block;
  }

  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--teal-mid), var(--teal-light));
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .service-card:hover::before { opacity: 1; }
  .service-card:hover { transform: translateY(-6px); border-color: transparent; }

  .service-card > * { position: relative; z-index: 1; }

  .service-icon {
    width: 52px;
    height: 52px;
    background: rgba(201,169,122,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    transition: background 0.3s ease;
  }

  .service-card:hover .service-icon { background: rgba(201,169,122,0.3); }

  .service-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .service-desc {
    font-size: 14px;
    color: rgba(244,248,248,0.6);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--sand);
    text-decoration: none;
  }

  .service-link svg { transition: transform 0.2s ease; }
  .service-card:hover .service-link svg { transform: translateX(-4px); }

  .service-card.featured {
    background: var(--sand);
    color: var(--teal-deep);
    border-color: transparent;
  }

  .service-card.featured .service-desc { color: rgba(13,61,66,0.65); }
  .service-card.featured .service-link { color: var(--teal-deep); }
  .service-card.featured .service-icon { background: rgba(13,61,66,0.12); }
  .service-card.featured::before { background: linear-gradient(135deg, #b8935f, #a07840); }

  /* ── HOW IT WORKS ── */
  .howit-section {
    background: var(--white);
  }

  .steps-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 70px;
    position: relative;
  }

  .steps-container::before {
    content: '';
    position: absolute;
    top: 32px;
    right: 10%;
    left: 10%;
    height: 2px;
    background: linear-gradient(to left, var(--sand), var(--teal-light));
    z-index: 0;
  }

  .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
  }

  .step-number {
    width: 64px;
    height: 64px;
    background: var(--teal-deep);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 24px;
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px rgba(13,61,66,0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .step-item:hover .step-number {
    background: var(--sand);
    color: var(--teal-deep);
    transform: scale(1.15);
  }

  .step-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--teal-deep);
    margin-bottom: 10px;
  }

  .step-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
  }

  /* ── PLATFORMS ── */
  .platforms-section {
    background: var(--cream);
  }

  .platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
  }

  .platform-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(13,61,66,0.06);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .platform-card:hover {
    border-color: var(--teal-mid);
    box-shadow: 0 16px 50px rgba(13,61,66,0.12);
    transform: translateY(-6px);
  }

  .platform-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--cream);
  }

  .platform-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--teal-deep);
    margin-bottom: 10px;
  }

  .platform-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
  }

  /* ── WHY US ── */
  .whyus-section {
    background: var(--teal-deep);
    color: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .whyus-section .section-tag { color: var(--sand); }
  .whyus-section .section-title { color: var(--cream); }
  .whyus-section .section-body { color: rgba(244,248,248,0.65); }

  .features-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 40px;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 14px;
    transition: background 0.25s ease;
    cursor: default;
  }

  .feature-item:hover {
    background: rgba(244,248,248,0.06);
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,169,122,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .feature-title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
  }

  .feature-desc {
    font-size: 14px;
    color: rgba(244,248,248,0.55);
    line-height: 1.65;
  }

  .whyus-visual {
    position: relative;
  }

  .whyus-image {
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 580px;
  }

  .floating-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--sand);
    border-radius: 20px;
    padding: 24px 28px;
    min-width: 200px;
    box-shadow: 0 20px 60px rgba(13,61,66,0.3);
    animation: floatCard 3s ease-in-out infinite;
  }

  @keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }

  .floating-card .fc-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--teal-deep);
    line-height: 1;
  }

  .floating-card .fc-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(13,61,66,0.7);
    margin-top: 4px;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    background: var(--sand-pale);
    overflow: hidden;
  }

  .testimonials-section .section-title { color: var(--teal-deep); }
  .testimonials-section .section-tag { color: var(--teal-mid); }

  .testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .testimonials-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .testimonials-scroll::-webkit-scrollbar { display: none; }

  .testimonial-card {
    flex-shrink: 0;
    width: 360px;
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
  }

  .testimonial-card:hover { transform: translateY(-6px); }

  .testimonial-quote {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 28px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal-dark);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--sand);
    font-size: 16px;
  }

  .author-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--teal-deep);
  }

  .author-title {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
  }

  /* ── CTA SECTION ── */
  .cta-section {
    background: var(--cream);
    text-align: center;
  }

  .cta-inner {
    background: var(--teal-deep);
    border-radius: 28px;
    padding: 90px 60px;
    position: relative;
    overflow: hidden;
  }

  .cta-inner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,169,122,0.2) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201,169,122,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-inner .section-title { color: var(--cream); margin-bottom: 20px; }

  .cta-subtitle {
    font-size: 18px;
    color: rgba(244,248,248,0.65);
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.7;
  }

  .cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-lime {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--sand);
    color: var(--teal-deep);
    padding: 16px 32px;
    border-radius: var(--radius-btn);
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .btn-lime:hover {
    background: var(--sand-dark, #b8935f);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,169,122,0.35);
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--cream);
    padding: 16px 32px;
    border-radius: var(--radius-btn);
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(244,248,248,0.3);
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .btn-ghost:hover {
    border-color: rgba(244,248,248,0.7);
    background: rgba(244,248,248,0.08);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--teal-deep);
    color: var(--cream);
    padding: 70px 60px 30px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(244,248,248,0.1);
    margin-bottom: 40px;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 900;
  }

  .footer-brand-icon {
    width: 36px;
    height: 36px;
    background: var(--sand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--teal-deep);
    font-weight: 900;
  }

  .footer-desc {
    font-size: 14px;
    color: rgba(244,248,248,0.55);
    line-height: 1.75;
    margin-bottom: 28px;
  }

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

  .social-btn {
    width: 38px;
    height: 38px;
    background: rgba(244,248,248,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(244,248,248,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
  }

  .social-btn:hover {
    background: var(--sand);
    color: var(--teal-deep);
  }

  .footer-col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(244,248,248,0.4);
    margin-bottom: 20px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    text-decoration: none;
    color: rgba(244,248,248,0.65);
    font-size: 14px;
    transition: color 0.2s ease;
  }

  .footer-links a:hover { color: var(--sand); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(240,245,232,0.35);
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-cert-icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 1 auto;
    margin-inline: auto;
  }

  .footer-cert-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 7px;
    border-radius: 8px;
    opacity: 0.72;
    transition: background 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
  }

  .footer-cert-link:hover {
    background: rgba(255,255,255,0.92);
    opacity: 0.95;
    transform: scale(1.04);
  }

  .footer-cert-link img {
    display: block;
    height: 36px !important;
    max-height: 36px !important;
    max-width: 128px !important;
    width: auto;
    object-fit: contain;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }



  /* Hero elements animate on load */

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── HAMBURGER / MOBILE NAV ── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--teal-deep);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    right: 12px;
    left: 12px;
    background: var(--cream);
    border-radius: 20px;
    padding: 24px;
    z-index: 999;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 4px;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 12px;
    transition: background 0.2s ease;
  }

  .mobile-menu a:hover { background: rgba(13,61,66,0.06); }

  .mobile-menu a.active {
    color: var(--teal-deep);
    font-weight: 800;
  }

  /* ── TRUST STRIP ── */
  .trust-section {
    background: var(--white);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-top: 1px solid rgba(13,61,66,0.06);
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .trust-icon {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .trust-text strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--teal-deep);
  }

  .trust-text span {
    font-size: 13px;
    color: var(--text-light);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .site-frame { margin: 8px; border-radius: 20px; }
    nav { padding: 14px 24px; display: grid; grid-template-columns: 68px 1fr 32px; align-items: center; }
    .nav-logo { grid-column: 1; justify-self: end; }
    .nav-cta { grid-column: 2; justify-self: center; }
    .hamburger { grid-column: 3; justify-self: start; }
    .nav-logo { width: 68px; height: 44px; }
    .nav-logo img { height: 44px !important; max-width: none; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    section { padding: 70px 28px; }
    .hero { padding: 120px 28px 60px; }
    .hero-image-wrap { height: 300px; }
    .about-section { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: 1; height: 360px; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-container { grid-template-columns: 1fr 1fr; }
    .steps-container::before { display: none; }
    .platforms-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .whyus-section { grid-template-columns: 1fr; }
    .whyus-image { height: 320px; }
    .floating-card { display: none; }
    .cta-inner { padding: 60px 28px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .trust-section { padding: 40px 28px; }
  }

  @media (max-width: 600px) {
    .site-frame { margin: 0; border-radius: 0; }
    nav { border-radius: 0; top: 0; right: 0; left: 0; grid-template-columns: 64px 1fr 32px; }
    .nav-logo { width: 64px; height: 40px; }
    .nav-logo img { height: 40px !important; max-width: none; }
    .hero-title { font-size: 36px; }
    .steps-container { grid-template-columns: 1fr; }
    .platforms-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn-primary, .hero-actions .btn-outline { justify-content: center; }
    .footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
    .footer-cert-icons { gap: 9px; }
    .footer-cert-link img { height: 32px !important; max-height: 32px !important; max-width: 116px !important; }
  }
