 /* === CSS Variables (matching globals.css) === */
    :root {
      --background: 0 0% 94.1%;
      --foreground: 240 10% 3.9%;
      --card: 0 0% 100%;
      --card-foreground: 240 10% 3.9%;
      --primary: 197 71% 53%;
      --primary-foreground: 210 40% 98%;
      --secondary: 240 4.8% 95.9%;
      --secondary-foreground: 240 5.9% 10%;
      --muted: 240 4.8% 95.9%;
      --muted-foreground: 240 3.8% 46.1%;
      --accent: 33 100% 50%;
      --accent-foreground: 0 0% 98%;
      --border: 240 5.9% 90%;
      --ring: 197 71% 53%;
      --radius: 0.5rem;
    }

    /* === Reset & Base === */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: hsl(var(--border)); }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'PT Sans', sans-serif;
      background: hsl(var(--background));
      color: hsl(var(--foreground));
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.6;
    }

    /* === Utilities === */
    .container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
    .font-headline { font-family: 'Poppins', sans-serif; }
    .text-primary { color: hsl(var(--primary)); }
    .text-muted { color: hsl(var(--muted-foreground)); }
    .bg-primary { background: hsl(var(--primary)); }
    .bg-card { background: hsl(var(--card)); }
    .bg-muted { background: hsl(var(--muted)); }
    .bg-section-alt { background: hsl(210 20% 96%); }

    /* === Header === */
    .site-header {
      background: hsl(var(--card));
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .site-header .container {
      display: flex;
      height: 64px;
      align-items: center;
      justify-content: space-between;
    }
    .site-header__brand {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      color: inherit;
    }
    .site-header__brand-name {
      font-family: 'Poppins', sans-serif;
      font-size: 1.125rem;
      font-weight: 600;
    }
    .site-header__nav {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }
    .site-header__nav a {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      border-radius: var(--radius);
      text-decoration: none;
      color: hsl(var(--foreground));
      font-size: 0.875rem;
      font-weight: 500;
      transition: background 0.2s, color 0.2s;
    }
    .site-header__nav a:hover {
      background: hsl(var(--muted));
    }
    .site-header__actions {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
	
    .discourt {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.625rem 1.25rem;
      border-radius: var(--radius);
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: all 0.25s cubic-bezier(.4,0,.2,1);
      white-space: nowrap;
    }
	
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.625rem 1.25rem;
      border-radius: var(--radius);
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: all 0.25s cubic-bezier(.4,0,.2,1);
      white-space: nowrap;
    }
    .btn--primary {
      background: hsl(var(--primary));
      color: hsl(var(--primary-foreground));
    }
    .btn--primary:hover {
      background: hsl(197 71% 46%);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px hsla(197,71%,53%,0.35);
    }
    .btn--secondary {
      background: hsl(var(--secondary));
      color: hsl(var(--secondary-foreground));
    }
    .btn--secondary:hover {
      background: hsl(240 4.8% 90%);
      transform: translateY(-1px);
    }
    .btn--ghost {
      background: transparent;
      color: hsl(var(--foreground));
    }
    .btn--ghost:hover { background: hsl(var(--muted)); }
    .btn--lg { padding: 0.75rem 2rem; font-size: 1rem; }
    .btn--white {
      background: white;
      color: hsl(var(--primary));
    }
    .btn--white:hover {
      background: hsl(210 40% 96%);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    /* === Mobile nav === */
    .mobile-menu-btn {
      display: none;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      color: hsl(var(--foreground));
    }
    @media (max-width: 768px) {
      .mobile-menu-btn { display: flex; }
      .site-header__nav, .site-header__actions { display: none; }
    }

    /* === Hero === */
    .hero {
      position: relative;
      width: 100%;
      min-height: 60vh;
      min-height: max(400px, 60vh);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      overflow: hidden;
    }
    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,50,80,0.65) 0%, rgba(0,0,0,0.45) 100%);
    }
    .hero__content {
      position: relative;
      z-index: 10;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      animation: heroFadeIn 1s ease-out;
    }
    @keyframes heroFadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero__logo {
      width: 120px;
      height: 120px;
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    }
    .hero__logo svg { width: 100%; height: 100%; }
    .hero__logo svg path { fill: #ffffff; fill-opacity: 1; }
    .hero__title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 5vw, 3.75rem);
      font-weight: 700;
      line-height: 1.15;
      text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    }
    .hero__subtitle {
      margin-top: 1rem;
      max-width: 42rem;
      font-size: 1.125rem;
      color: rgba(255,255,255,0.9);
      text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    }
    .hero__actions {
      margin-top: 2rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }

    /* === Section styles === */
    .section { padding: 4rem 0; }
    .section--alt { background: hsl(210 20% 96%); }
    .section__title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.5rem, 3vw, 1.875rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      text-align: center;
      margin-bottom: 1rem;
    }
    .section__subtitle {
      text-align: center;
      font-size: 1.125rem;
      color: hsl(var(--muted-foreground));
      max-width: 48rem;
      margin: 0 auto 3rem;
    }

    /* === Card Grid === */
    .card-grid {
      display: grid;
      gap: 2rem;
    }
    .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
    @media (max-width: 768px) {
      .card-grid--3 { grid-template-columns: 1fr; }
    }

    /* === Card === */
    .card {
      background: hsl(var(--card));
      border: 1px solid hsl(var(--border));
      border-radius: calc(var(--radius) + 4px);
      overflow: hidden;
      transition: all 0.3s cubic-bezier(.4,0,.2,1);
    }
    .card:hover {
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
      transform: translateY(-6px);
    }
    .card__body { padding: 1.5rem; }
    .card--center { text-align: center; }
    .card__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      background: hsla(197,71%,53%,0.1);
      margin-bottom: 1rem;
    }
    .card__icon svg {
      width: 2rem;
      height: 2rem;
      color: hsl(var(--primary));
      stroke: hsl(var(--primary));
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .card__title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .card__desc {
      color: hsl(var(--muted-foreground));
      font-size: 0.9375rem;
      line-height: 1.6;
    }
    .card__slogan {
      font-weight: 600;
      font-size: 0.875rem;
      color: hsl(var(--foreground));
      margin-bottom: 0.75rem;
    }
    .card__cta {
      margin-top: 1.25rem;
    }

    /* === Map placeholder === */
    .map-section { padding: 2rem 0; }
    .map-placeholder {
      border-radius: 1rem;
      overflow: hidden;
      border: 1px solid hsl(var(--border));
      box-shadow: 0 4px 24px rgba(0,0,0,0.08);
      height: 340px;
      background: linear-gradient(135deg, hsl(197 30% 92%) 0%, hsl(197 20% 85%) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: hsl(var(--muted-foreground));
      gap: 1rem;
      position: relative;
    }
    .map-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 40px,
        hsla(197,30%,80%,0.3) 40px,
        hsla(197,30%,80%,0.3) 41px
      ),
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 40px,
        hsla(197,30%,80%,0.3) 40px,
        hsla(197,30%,80%,0.3) 41px
      );
      border-radius: 1rem;
    }
    .map-placeholder__icon {
      position: relative;
      z-index: 1;
    }
    .map-placeholder__icon svg {
      width: 3rem;
      height: 3rem;
      stroke: hsl(var(--primary));
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      animation: mapPulse 2s infinite;
    }
    @keyframes mapPulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.7; }
    }
    .map-placeholder__text {
      position: relative;
      z-index: 1;
      font-size: 1rem;
      font-weight: 600;
    }
    .map-placeholder__sub {
      position: relative;
      z-index: 1;
      font-size: 0.8125rem;
    }
    @media (min-width: 768px) {
      .map-placeholder { height: 420px; }
    }

    /* === Featured Offers === */
    .featured-offers {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .offer-card {
      background: hsl(var(--card));
      border: 1px solid hsl(var(--border));
      border-radius: calc(var(--radius) + 4px);
      overflow: hidden;
      transition: all 0.3s cubic-bezier(.4,0,.2,1);
    }
    .offer-card:hover {
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
      transform: translateY(-4px);
    }
    .offer-card__img {
      height: 180px;
      background: linear-gradient(135deg, hsl(197 50% 88%), hsl(33 60% 88%));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      font-size: 5rem;
    }
    .offer-card__badge {
      position: absolute;
      top: 0.75rem;
      left: 0.75rem;
      background: hsl(var(--accent));
      color: white;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.25rem 0.75rem;
      border-radius: 999px;
    }
    .offer-card__img svg {
      width: 3rem;
      height: 3rem;
      stroke: hsl(var(--primary));
      fill: none;
      stroke-width: 1.5;
      opacity: 0.4;
    }
    .offer-card__body { padding: 1rem 1.25rem; }
    .offer-card__title {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }
    .offer-card__merchant {
      font-size: 0.8125rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 0.5rem;
    }
    .offer-card__footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8125rem;
      color: hsl(var(--muted-foreground));
    }

    /* === Separator === */
    .separator {
      border: none;
      border-top: 1px solid hsl(var(--border));
      margin: 3rem 0;
    }

    /* === CTA Section === */
    .cta-section {
      background: linear-gradient(135deg, hsl(197 71% 53%) 0%, hsl(197 71% 42%) 100%);
      color: hsl(var(--primary-foreground));
      padding: 5rem 0;
      text-align: center;
    }
    .cta-section .section__title { color: white; }
    .cta-section p {
      font-size: 1.125rem;
      max-width: 42rem;
      margin: 0 auto 2rem;
      opacity: 0.95;
    }

    /* === Mission Section === */
    .mission-section {
      background: hsl(210 20% 96%);
      padding: 5rem 0;
      text-align: center;
    }
    .mission-section p {
      font-size: 1.125rem;
      color: hsl(var(--muted-foreground));
      max-width: 52rem;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* === Footer === */
    .site-footer {
      background: hsl(var(--card));
      border-top: 1px solid hsl(var(--border));
      margin-top: auto;
    }
    .site-footer .container { padding-top: 1.5rem; padding-bottom: 1.5rem; }
    .footer__nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.5rem 1rem;
    }
    .footer__nav a {
      font-size: 0.875rem;
      color: hsl(var(--foreground));
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer__nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
    .footer__nav a--highlight { font-weight: 600; color: hsl(var(--primary)); }
    .footer__bottom {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid hsl(var(--border));
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .footer__copy {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
    }
    .footer__legal {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.875rem;
    }
    .footer__legal a {
      color: hsl(var(--muted-foreground));
      text-decoration: none;
    }
    .footer__legal a:hover { text-decoration: underline; text-underline-offset: 4px; }
    .footer__trust {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      color: hsl(var(--muted-foreground));
    }
    .footer__trust svg {
      width: 1rem;
      height: 1rem;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }
    @media (max-width: 640px) {
      .footer__bottom { flex-direction: column; text-align: center; }
    }

    /* === Scroll animations === */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }