
:root {
  /* Deep Luxury Bases */
  --base1: #061A0C; --base2: #0B2414; --base3: #112E1B;
  --base4: #183D25; --base5: #1F4D30;

  /* High-End Accents */
  --primary: #FFD700;
  --primary-dark: #E6C200;
  --primary-dim: rgba(255, 215, 0, 0.15);
  --primary-border: rgba(255, 215, 0, 0.4);

  /* Backgrounds & Text */
  --bg-dark: #041208;
  --bg-card: #081C0F;
  --text: #FFD700;
  --border: rgba(255, 215, 0, 0.2);
  
  /* Gradients */
  --grad: linear-gradient(135deg, #061A0C 0%, #112E1B 100%);
} 
  *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
  
  
  body { 
  font-family: 'Inter', system-ui, -apple-system, sans-serif; 
  font-weight: 300; 
  overflow-x: hidden; 
  text-rendering: optimizeLegibility;
}
  h1,h2,h3 { font-family: 'Playfair Display', serif; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 200;
    padding: 1rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.4s;
        background: rgba(6,15,10,0.96);

  }
  nav.scrolled {
    background: rgba(6,15,10,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  /* ─── LOGO ─── */
  .logo-wrap { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
  .logo-mark {
    width: 38px; height: 38px; position: relative; flex-shrink: 0;
  }
  .logo-mark svg { width: 100%; height: 100%; }
  .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem; font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
  }
  .logo-text .elite { color: var(--primary); }
  .logo-text .hausly { color:white; font-weight: 400 bold;  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a { color: white; text-decoration: none; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; font-family: 'Space Grotesk', sans-serif; transition: color 0.3s; }
  .nav-links a:hover { color: var(--primary); }
  .nav-cta {
    background: var(--primary); color:  rgba(6,15,10,0.96);
    padding: 0.6rem 1.8rem; font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
    border: none; cursor: pointer; transition: all 0.3s; text-decoration: none;
    border-radius: 100px;
  }
  .nav-cta:hover { background: #27AE60; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(46,204,113,0.3); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center;
  }
 /* ── BACKGROUND IMAGE (More visible, less dark) ── */
.hero-bg {
  position: absolute; 
  inset: -10%; 
  background-image: url('images/shutterstock_2449524995.jpg');
  background-size: contain; 
  background-position: center;
  background-repeat:no-repeat ;
  /* Increased brightness from 0.22 to 0.45, and saturation to 0.8 */
  filter: brightness(0.90) saturate(0.8) contrast(1.1);
  will-change: transform;
  transition: transform 0.05s linear;
}

/* ── OVERLAY (Translucent Navy Gradient) ── */
.hero-overlay {
  position: absolute; 
  inset: 0;
  /* Switched from 92% opacity to 65% for a much clearer view.
     Uses your brand Navy (rgba(28, 28, 58)) 
  */
  background: 
    linear-gradient(
      135deg, 
      rgba(28, 28, 58, 0.65) 0%,   /* Darker on the left for text readability */
      rgba(28, 28, 58, 0.35) 50%,  /* Lighter in the middle to see the image */
      rgba(28, 28, 58, 0.55) 100%
    ),
    radial-gradient(
      ellipse at 30% 50%, 
      rgba(214, 48, 49, 0.05) 0%, /* Very subtle hint of Red glow instead of Green */
      transparent 80%
    );
}
  .hero-content {
    position: relative; z-index: 2;
    width: 100%; max-width: 1300px; margin: 0 auto;
    padding: 9rem 4rem 5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }

  /* Hero Left */
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--primary-dim); border: 1px solid var(--primary-border);
    padding: 0.35rem 1rem; border-radius: 100px;
    font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--primary); margin-bottom: 1.8rem;
    font-family: 'Space Grotesk', sans-serif;
  }
  .hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: pulse 2s ease-in-out infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }
  .hero h1 {
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 1.02; margin-bottom: 1.5rem;
    color: var(--text); font-weight: 900;
  }
  .hero h1 em { font-style: italic; color: var(--primary); }
  .hero-sub { font-size: 1.05rem; line-height: 1.85; color: white; max-width: 460px; margin-bottom: 2.5rem; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
  .btn-primary {
    background: var(--primary); color:  rgba(6,15,10,0.96);
    padding: 0.9rem 2.4rem; font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
    border: none; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
    border-radius: 100px;
  }
  .btn-primary:hover { background:  rgba(6,15,10,0.96); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(46,204,113,0.3); color:white;}
  .btn-outline {
    background: transparent; color:  var(--primary);
    padding: 0.9rem 2.4rem; font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
    border: 1px solid var(--border); cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
    border-radius: 100px;
  }
  .btn-outline:hover { border-color: var(--primary); color: var(--primary); }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); }
  .h-stat { padding: 1.2rem 1rem; border-right: 1px solid var(--border); text-align: center; }
  .h-stat:last-child { border-right: none; }
  .h-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--primary); line-height: 1; }
  .h-stat-lbl { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: white; margin-top: 0.2rem; font-family: 'Space Grotesk', sans-serif; }

  /* ─── INQUIRY FORM ─── */
  .hero-form-wrap {
    background: rgba(13,40,24,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 2.5rem;
    position: relative;
    border-radius: 16px;
  }
  .hero-form-wrap::before { display: none; }
  .form-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 0.4rem; color: var(--text); }
  .form-sub { font-size: 0.78rem; color: white; margin-bottom: 1.8rem; line-height: 1.6; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
  .form-group label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color:white; font-family: 'Space Grotesk', sans-serif; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(6,15,10,0.7); border: 1px solid var(--border);
    color: var(--text); padding: 0.8rem 1rem;
    font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 300;
    outline: none; transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46,204,113,0.08);
  }
  .form-group select option { background: var(--base2); }
  .form-group textarea { resize: none; height: 80px; }
  .form-submit {
    width: 100%; padding: 1rem;
    background: var(--primary); color: black;
    font-family: 'Space Grotesk', sans-serif; font-size: 0.82rem;
    letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
    border: none; cursor: pointer; transition: all 0.3s;
    border-radius: 100px;
    margin-top: 0.5rem;
  }
  .form-submit:hover { background: #27AE60; box-shadow: 0 8px 30px rgba(46,204,113,0.35); transform: translateY(-1px); }
  .form-note { text-align: center; font-size: 0.68rem; color:white; margin-top: 0.8rem; }
  .form-note a { color: var(--primary); text-decoration: none; }

  /* ─── TICKER ─── */
  .ticker-wrap { background: var(--base2); padding: 0.9rem 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .ticker { display: flex; animation: ticker 35s linear infinite; white-space: nowrap; }
  .ticker-item { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color:  #FFD700; padding: 0 3rem; font-family: 'Space Grotesk', sans-serif; }
  .ticker-dot { color: var(--primary); margin-right: 3rem; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ─── SECTION BASE ─── */
  .section { padding: 7rem 4rem; max-width: 1400px; margin: 0 auto; }
  .section-eyebrow { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; font-size: 1rem; letter-spacing: 4px; text-transform: uppercase; color: var(--text); font-family: 'Space Grotesk', sans-serif;  }
  .section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--primary); }
  .section-title { font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.1; margin-bottom: 1.2rem; color:#183D25;}
  .section-sub { font-size: 1rem; color:#183D25; line-height: 1.8; max-width: 560px; }

.section-tech{
 background-image:url(images/cozy-lively-home-interior-design.jpg);
 background-repeat: no-repeat;
 background-size: cover;
 padding: 7rem 4rem; max-width: 1400px; margin: 0 auto;
}

  /* ─── ABOUT SPLIT ─── */
  .about-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
  .about-photo { position: relative; overflow: hidden; }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) saturate(0.6); transition: transform 8s ease; display: block; }
  .about-photo:hover img { transform: scale(1.06); }
  .about-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 65%, var(--dark2) 100%), linear-gradient(to top, rgba(13,40,24,0.5) 0%, transparent 40%); }
  .about-photo-tag { position: absolute; bottom: 2rem; left: 2rem; background: var(--primary); color: #183D25; font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; padding: 0.5rem 1rem; font-family: 'Space Grotesk', sans-serif; font-weight: 600; }
  .about-text { background: var(--dark2); padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--border); }
  .about-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
  .about-pt { display: flex; gap: 1rem; align-items: start; }
  .about-pt-icon { width: 20px; height: 20px; border: 1px solid var(--primary); color: #1F4D30; font-size: 0.55rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
  .about-pt-body strong { color: var(--text); font-size: 0.88rem; font-weight: 500; display: block; margin-bottom: 0.2rem; }
  .about-pt-body span { color: var(--muted); font-size: 0.8rem; line-height: 1.7; }

  /* ─── SERVICES ─── */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 4rem; }
  .svc-card { background: var(--dark); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: background 0.4s; }
  .svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--primary), var(--primary2)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
  .svc-card:hover { background: var(--base1); color:white; }
  .svc-card:hover::after { transform: scaleX(1); }
  .svc-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: #183D25; line-height: 1; margin-bottom: 0.5rem; position: absolute; top: 1.5rem; right: 1.5rem; }
  .svc-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--text); }
  .svc-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.8; }
  .svc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
  .stag { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: #183D25; border: 1px solid var(--primary-border); padding: 0.2rem 0.6rem; font-family: 'Space Grotesk', sans-serif; }

.svc-card:hover { 
    background: #0a0a0a; /* Deep black/dark for high contrast */
    color: #ffffff; 
}

/* 2. The Service Number (01, 02) turns Yellow */
.svc-card:hover .svc-num { 
    color: #FFD700; /* Gold/Yellow pop */
    transition: color 0.4s ease;
}

/* 3. Headers and Paragraphs adjust on hover */
.svc-card:hover h3 { color: #ffffff; }
.svc-card:hover p { color: #e0e0e0; }

/* 4. The SEO Tags (Stag) turn Yellow Border & Text */
.svc-card:hover .stag { 
    color: #FFD700; 
    border-color: #FFD700; 
    background: rgba(255, 215, 0, 0.05); /* Very subtle yellow glow */
    transition: all 0.4s ease;
}


.svc-card:hover .svc-num {
    opacity: 1; /* Full brightness on hover */
}
  /* ─── PHOTO SHOWCASE ─── */
  .showcase-outer { background: var(--dark); overflow: hidden; }
  .showcase-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2px; height: 440px; }
  .sc-photo { position: relative; overflow: hidden; }
  .sc-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45) saturate(0.5); transition: all 0.7s ease; display: block; }
  .sc-photo:hover img { filter: brightness(0.7) saturate(0.8); transform: scale(1.05); }
  .sc-label { position: absolute; bottom: 1.5rem; left: 1.5rem; font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); background: rgba(6,15,10,0.88); padding: 0.4rem 0.9rem; border-left: 2px solid var(--primary); font-family: 'Space Grotesk', sans-serif; }

  /* ─── PLATFORMS ─── */
  .plat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border); margin-top: 3rem; border: 1px solid var(--border); }
  .plat-card { background: var(--dark2); padding: 2rem 1.5rem; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
  .plat-card::before { content: ''; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: opacity 0.4s; }
  .plat-card:hover::before { opacity: 1; }
  .plat-card:hover { transform: translateY(-4px); }
  .plat-card * { position: relative; z-index: 1; }
  .plat-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.4rem; }
  .plat-desc { font-size: 0.7rem; color: var(--muted); }

  /* ─── TOOLS ─── */
  .tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 4rem; }
  .tool-cat { background: #183D25; border: 1px solid var(--border); padding: 1.8rem; margin-bottom: 1px; }
  .tool-cat-title { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--border); font-family: 'Space Grotesk', sans-serif; }
  .tool-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .tpill { font-size: 0.72rem; padding: 0.4rem 1rem; border: 1px solid var(--border); color: white; transition: all 0.3s; cursor: default; font-family: 'Space Grotesk', sans-serif; }
  .tpill:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-dim); }

  /* ─── PRICING ─── */
  /* ─── PRICING SECTION ─── */
.pricing-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 2rem; 
  margin-top: 4rem; 
}

.price-card { 
  border: 1px solid rgba(255, 215, 0, 0.2); /* Subtle yellow border */
  padding: 3rem;  
  background: #183D25; /* Your Green Background */
  border-radius: 24px; /* Rounded Corners */
  position: relative; 
  overflow: hidden; 
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px); /* Slight lift on hover */
}

/* Title / Tier (The "Elite" Labels) */
.price-tier { 
  font-size: 0.7rem; 
  letter-spacing: 3px; 
  text-transform: uppercase; 
  color: #FFD700; /* Yellow Title */
  margin-bottom: 1rem; 
  font-family: 'Montserrat', sans-serif; 
  font-weight: 700;
}

/* Price Amount */
.price-amt { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 4rem; 
  color: #FFD700; /* Yellow Price */
  line-height: 1; 
  font-weight: 800;
}

/* Bullet Points (Checkmarks) */
.price-list li { 
  font-size: 0.9rem; 
  color: #ffffff; /* White text for readability */
  display: flex; 
  gap: 0.7rem; 
  align-items: start; 
}

.price-list li::before { 
  content: '✓'; 
  color: #FFD700; /* Yellow Bullets */
  font-weight: bold;
  flex-shrink: 0; 
  font-size: 1rem; 
}

/* Pricing Button */
.price-btn {
  display: block;
  width: 100%;
  padding: 1.2rem;
  background: #FFD700; /* Yellow Button */
  color: #183D25; /* Green Text for contrast */
  text-align: center;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 12px;
  margin-top: 2rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.price-btn:hover {
  background: #ffffff; /* Turns white on hover */
  color: #183D25;
}

/* Best Value Ribbon adjustment */
.price-card.featured::after { 
  content: 'BEST VALUE'; 
  position: absolute; 
  top: 1.2rem; 
  right: -2.5rem; 
  background: #FFD700; 
  color: #183D25; 
  font-size: 0.6rem; 
  padding: 0.3rem 3.5rem; 
  transform: rotate(45deg); 
  font-weight: 700; 
}
  /* ─── FAQ ─── */
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); margin-top: 4rem; border: 1px solid var(--border); }
  .faq-item { background: var(--dark2); padding: 2rem 2.5rem; transition: background 0.3s; cursor: pointer; }
  .faq-item:hover { background: var(--base1); }
  .faq-q { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text); margin-bottom: 0.8rem; display: flex; gap: 0.8rem; line-height: 1.4; }
  .faq-q-mark { color: var(--primary); flex-shrink: 0; font-style: italic; }
  .faq-a { font-size: 0.82rem; color: var(--muted); line-height: 1.8; padding-left: 1.3rem; }
 .faq-a:hover{color:white;}
  /* ─── CTA ─── */
  .cta-outer { position: relative; overflow: hidden; min-height: 520px; display: flex; align-items: center; }
  .cta-bg { position: absolute; inset: 0; background-image: url('images/bg_1.jpg'); background-size: cover; background-position: center; filter: brightness(0.70) saturate(0.3); }
  .cta-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,15,10,0.95) 0%, rgba(13,40,24,0.7) 50%, rgba(6,15,10,0.9) 100%); }
  .cta-content { position: relative; z-index: 2; text-align: center; padding: 7rem 4rem; width: 100%; }
  .cta-content h2 { font-size: clamp(2.5rem, 5vw, 5rem); margin-bottom: 1.5rem; }
  .cta-content h2 em { color: var(--primary); }
  .cta-content p { font-size: 1rem; color: var(--muted); max-width: 480px; margin: 0 auto 3rem; line-height: 1.8; }
  .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .cta-contact { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
  .cta-contact a { color: var(--muted); text-decoration: none; font-size: 0.8rem; display: flex; align-items: center; gap: 0.6rem; transition: color 0.3s; font-family: 'Space Grotesk', sans-serif; }
  .cta-contact a:hover { color: var(--primary); }
  .cta-contact .icon { color: var(--primary); font-size: 1rem; }

  /* ─── FOOTER ─── */
  footer { background-color:rgba(6,15,10,0.96); border-top: 1px solid var(--border); padding: 3.5rem 4rem; }
  .footer-top { display: flex; justify-content: space-between; align-items: start; flex-wrap: wrap; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
  .footer-brand p { font-size: 0.82rem; color: white; max-width: 260px; margin-top: 0.8rem; line-height: 1.7; }
  .footer-nav { display: flex; gap: 4rem; }
  .footer-col h4 { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 1.2rem; font-family: 'Space Grotesk', sans-serif; font-weight: 500; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; color:#FFD700;}
  .footer-col a { color: white; font-size: 0.8rem; text-decoration: none; transition: color 0.3s; }
  .footer-col a:hover { color: var(--primary); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { font-size: 0.7rem; color: white; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1000px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero-content { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; gap: 3rem; }
    .section { padding: 4rem 1.5rem; }
    .about-wrap { grid-template-columns: 1fr; }
    .about-photo { min-height: 300px; }
    .about-text { padding: 3rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: 1fr; height: auto; }
    .sc-photo { height: 220px; }
    .plat-grid { grid-template-columns: repeat(3, 1fr); }
    .tools-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .cta-content { padding: 5rem 1.5rem; }
    footer { padding: 2.5rem 1.5rem; }
    .footer-top { flex-direction: column; }
    .footer-nav { gap: 2rem; flex-wrap: wrap; }
    .form-row { grid-template-columns: 1fr; }
  }
