/*
Theme Name: OTCmeta
Theme URI: https://otcmeta.com
Author: OTCmeta
Author URI: https://otcmeta.com
Description: Single-page landing theme for OTCmeta Meta Ads Setup Service.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: otcmeta
*/

/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --bg:#ffffff;
  --fg:#1e293b;
  --primary:#3b82f6;
  --primary-fg:#ffffff;
  --secondary:#60a5fa;
  --muted:#f1f5f9;
  --muted-fg:#64748b;
  --card:#ffffff;
  --border:#e2e8f0;
  --destructive:#ef4444;
  --destructive-light:#fecaca;
  --radius:0.5rem;
  --accent:#f1f5f9;
  --emerald:#10b981;
}

html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter','Nirmala UI',system-ui,-apple-system,sans-serif;
  background:var(--bg);
  color:var(--fg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
button{cursor:pointer;border:none;background:none;font-family:inherit}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6{font-weight:700;letter-spacing:-0.02em;color:var(--fg);line-height:1.15}
h1{font-size:clamp(2.5rem,6vw,5rem)}
h2{font-size:clamp(1.75rem,4vw,3rem)}
h3{font-size:clamp(1.25rem,2.5vw,1.5rem)}
h4{font-size:clamp(1.1rem,2vw,1.25rem)}
h5{font-size:clamp(1rem,1.5vw,1.125rem)}
h6{font-size:clamp(0.875rem,1.2vw,1rem)}

/* ===== LAYOUT ===== */
.container-max{max-width:1280px;margin:0 auto;padding:0 1rem}
@media(min-width:640px){.container-max{padding:0 1.5rem}}
@media(min-width:1024px){.container-max{padding:0 2rem}}

.section-padding{padding:2.5rem 1rem}
@media(min-width:768px){.section-padding{padding:4rem 1.5rem}}
@media(min-width:1024px){.section-padding{padding:4rem 2rem}}

/* ===== GRID PATTERNS ===== */
.grid-pattern{
  background-image:linear-gradient(rgba(59,130,246,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(59,130,246,.03) 1px,transparent 1px);
  background-size:40px 40px;
}
.grid-pattern-dots{
  background-image:radial-gradient(circle,rgba(59,130,246,.08) 1px,transparent 1px);
  background-size:24px 24px;
}
.grid-pattern-subtle{
  background-image:linear-gradient(rgba(59,130,246,.02) 1px,transparent 1px),linear-gradient(90deg,rgba(59,130,246,.02) 1px,transparent 1px);
  background-size:60px 60px;
}
.grid-pattern-dense{
  background-image:linear-gradient(rgba(59,130,246,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(59,130,246,.04) 1px,transparent 1px);
  background-size:24px 24px;
}

/* ===== COMPONENTS ===== */

/* Buttons */
.btn-cta{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:var(--primary);color:var(--primary-fg);
  font-weight:700;font-size:clamp(1rem,2vw,1.25rem);
  padding:1rem 2rem;border-radius:0.75rem;
  box-shadow:0 0 20px rgba(59,130,246,0.4);
  transition:background .2s,transform .2s;
}
.btn-cta:hover{background:#2563eb;transform:translateY(-2px)}
@media(min-width:640px){.btn-cta{padding:1.25rem 3rem;font-size:1.125rem}}

/* Cards */
.card{
  background:var(--card);border:1px solid var(--border);
  border-radius:1rem;padding:1.5rem;
  transition:box-shadow .3s,transform .3s;
}
.card:hover{box-shadow:0 0 20px rgba(59,130,246,0.15);transform:translateY(-2px);border-color:rgba(59,130,246,.3)}

/* Badges */
.badge{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:rgba(59,130,246,.1);border:1px solid rgba(59,130,246,.3);
  border-radius:9999px;padding:0.5rem 1.25rem;
  font-weight:600;color:var(--primary);font-size:0.875rem;
}

/* Trust badges row */
.trust-badges{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem;margin-top:1rem}
.trust-badge{display:flex;align-items:center;gap:0.375rem;color:var(--muted-fg);font-size:0.8125rem}
.trust-badge svg{width:16px;height:16px}

/* Icon circle */
.icon-circle{
  width:3rem;height:3rem;border-radius:0.75rem;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.icon-circle svg{width:1.5rem;height:1.5rem}
.icon-circle-primary{background:rgba(59,130,246,.15)}
.icon-circle-primary svg{color:var(--primary)}
.icon-circle-destructive{background:rgba(239,68,68,.15)}
.icon-circle-destructive svg{color:var(--destructive)}

/* ===== TOP BANNER ===== */
.top-banner{
  background:var(--primary);padding:0.5rem 1rem;text-align:center;
  position:fixed;top:0;left:0;right:0;z-index:100;
}
.top-banner p{color:var(--primary-fg);font-size:0.8125rem;font-weight:500;margin:0;padding-right:2rem}
.top-banner .highlight{
  background:rgba(255,255,255,.2);font-weight:700;padding:0.125rem 0.375rem;border-radius:0.25rem;
}
.top-banner .close-btn{
  position:absolute;right:0.5rem;top:50%;transform:translateY(-50%);
  padding:0.25rem;border-radius:0.25rem;color:var(--primary-fg);
}
.top-banner .close-btn:hover{background:rgba(255,255,255,.2)}

/* ===== HERO ===== */
.hero-section{
  position:relative;overflow:hidden;min-height:100vh;
  display:flex;align-items:center;
}
.hero-gradient{
  position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:100%;height:24rem;
  background:radial-gradient(ellipse at center,rgba(59,130,246,.1),rgba(59,130,246,.05),transparent);
  pointer-events:none;
}
.hero-content{position:relative;width:100%;padding:3rem 0}
.hero-headline{text-align:center;max-width:56rem;margin:0 auto 2rem}
.hero-headline .text-primary{color:var(--primary);font-style:italic}
.hero-sub{
  text-align:center;max-width:42rem;margin:0 auto;
  color:var(--muted-fg);font-size:clamp(1rem,2vw,1.25rem);line-height:1.7;
}

/* Timer */
.timer-badge{
  display:inline-flex;flex-wrap:wrap;align-items:center;gap:0.5rem 0.75rem;
  background:var(--card);border:1px solid var(--border);
  border-radius:0.5rem;padding:0.5rem 1rem;margin-bottom:1.5rem;
}
.timer-label{
  background:var(--primary);color:var(--primary-fg);
  font-size:0.75rem;font-weight:600;padding:0.25rem 0.5rem;border-radius:0.25rem;
}
.timer-digits{display:flex;align-items:center;gap:0.25rem;font-family:'Space Mono',monospace;font-size:0.875rem}
.timer-digit{background:var(--accent);padding:0.25rem 0.5rem;border-radius:0.25rem}

/* Social proof counter */
.social-proof{
  display:flex;justify-content:center;margin-bottom:1rem;
}
.social-proof-inner{
  display:flex;align-items:center;gap:0.75rem;
  background:rgba(255,255,255,.8);border:1px solid var(--border);
  border-radius:9999px;padding:0.625rem 1rem;
}
.avatar-stack{display:flex}
.avatar-stack img{
  width:2rem;height:2rem;border-radius:9999px;
  border:2px solid var(--bg);object-fit:cover;
  margin-left:-0.5rem;
}
.avatar-stack img:first-child{margin-left:0}
.avatar-stack .avatar-more{
  width:2rem;height:2rem;border-radius:9999px;
  background:rgba(59,130,246,.15);border:2px solid var(--bg);
  display:flex;align-items:center;justify-content:center;
  font-size:0.75rem;font-weight:600;color:var(--primary);
  margin-left:-0.5rem;
}
.stars{display:flex;align-items:center;gap:0.125rem}
.stars svg{width:14px;height:14px;fill:#facc15;color:#facc15}
.proof-text{font-size:0.875rem}
.proof-text strong{color:var(--fg)}
.proof-text span{color:var(--muted-fg)}

/* Price display */
.price-display{text-align:center;margin-top:0.75rem}
.price-old{color:var(--muted-fg);text-decoration:line-through;font-size:0.875rem}
.price-new{font-weight:700;font-size:clamp(1.125rem,2vw,1.25rem);color:var(--fg);margin-left:0.5rem}
.price-save{
  background:rgba(59,130,246,.15);color:var(--primary);
  font-size:0.75rem;font-weight:600;padding:0.125rem 0.5rem;
  border-radius:0.25rem;margin-left:0.5rem;
}
.price-note{color:var(--muted-fg);font-size:0.75rem;margin-top:0.25rem}

/* Video */
.video-wrapper{max-width:48rem;margin:0 auto 2rem;position:relative}
.video-container{
  position:relative;border-radius:1rem;overflow:hidden;
  border:1px solid var(--border);background:var(--card);
  box-shadow:0 0 20px rgba(59,130,246,0.15);
}
.video-container .aspect-ratio{position:relative;width:100%;padding-bottom:56.25%}
.video-container iframe,.video-container .video-thumb{position:absolute;top:0;left:0;width:100%;height:100%}
.video-thumb{cursor:pointer;border:none;background:none;padding:0}
.video-thumb img{width:100%;height:100%;object-fit:cover}
.video-overlay{
  position:absolute;top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,.2);display:flex;align-items:center;justify-content:center;
}
.play-btn{
  width:4rem;height:4rem;border-radius:9999px;
  background:var(--primary);display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 15px rgba(59,130,246,.4);
}
.play-btn svg{width:2rem;height:2rem;color:white;margin-left:0.25rem}
.video-label{
  display:flex;justify-content:center;margin-top:1rem;
}
.video-label-inner{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:rgba(255,255,255,.8);border:1px solid var(--border);
  border-radius:9999px;padding:0.5rem 1rem;font-size:0.875rem;color:var(--muted-fg);
}
.pulse-dot{width:0.5rem;height:0.5rem;border-radius:9999px;background:var(--primary)}

/* Key points */
.key-points{display:flex;flex-wrap:wrap;justify-content:center;gap:0.5rem;max-width:48rem;margin:0 auto 1.5rem}
.key-point{
  display:flex;align-items:center;gap:0.5rem;
  background:rgba(255,255,255,.5);border:1px solid var(--border);
  border-radius:0.5rem;padding:0.5rem 1rem;
  font-weight:500;font-size:0.875rem;color:var(--fg);
}
.key-point svg{width:1.25rem;height:1.25rem;color:var(--primary)}

/* ===== PAIN POINTS ===== */
.pain-section{background:var(--accent)}
.pain-item{
  display:flex;align-items:center;gap:1rem;
  padding:1.25rem;background:var(--card);
  border-radius:0.75rem;border:1px solid var(--border);
  margin-bottom:1rem;
}
.pain-item:last-child{margin-bottom:0}

/* ===== BENEFITS ===== */
.benefits-grid{display:grid;gap:1.5rem}
@media(min-width:768px){.benefits-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.benefits-grid{grid-template-columns:repeat(3,1fr)}}

/* ===== FRAMEWORK ===== */
.framework-grid{display:grid;gap:1.5rem}
@media(min-width:640px){.framework-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.framework-grid{grid-template-columns:repeat(5,1fr)}}
.framework-step{position:relative;text-align:center}
.step-number{
  position:absolute;top:-0.75rem;left:50%;transform:translateX(-50%);
  width:1.5rem;height:1.5rem;border-radius:9999px;
  background:var(--primary);color:var(--primary-fg);
  font-size:0.75rem;font-weight:700;
  display:flex;align-items:center;justify-content:center;z-index:1;
  box-shadow:0 0 10px rgba(59,130,246,.4);
}

/* ===== TRANSFORMATION ===== */
.transform-grid{display:grid;gap:2rem;max-width:56rem;margin:0 auto}
@media(min-width:768px){.transform-grid{grid-template-columns:repeat(2,1fr)}}
.before-card{border:2px solid rgba(239,68,68,.4)}
.after-card{border:2px solid rgba(59,130,246,.4);box-shadow:0 0 20px rgba(59,130,246,.15)}
.card-label{
  position:absolute;top:-0.875rem;left:1.5rem;
  padding:0.25rem 1rem;font-size:0.8125rem;font-weight:600;
  border-radius:9999px;color:white;
}
.card-label-before{background:var(--destructive)}
.card-label-after{background:var(--primary)}
.transform-item{display:flex;align-items:flex-start;gap:0.75rem;margin-bottom:1rem}
.transform-item:last-child{margin-bottom:0}
.check-circle,.x-circle{
  width:1.5rem;height:1.5rem;border-radius:9999px;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:0.125rem;
}
.check-circle{background:rgba(59,130,246,.15)}
.check-circle svg{width:1rem;height:1rem;color:var(--primary)}
.x-circle{background:rgba(239,68,68,.15)}
.x-circle svg{width:1rem;height:1rem;color:var(--destructive)}

/* ===== CLIENTS ===== */
.clients-wrap{display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem}
.client-badge{
  display:flex;align-items:center;gap:0.75rem;
  padding:1rem 1.5rem;background:var(--card);
  border-radius:1rem;border:1px solid var(--border);
}

/* ===== PROCESS ===== */
.process-grid{display:grid;gap:1.5rem}
@media(min-width:768px){.process-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.process-grid{grid-template-columns:repeat(4,1fr)}}
.process-card .step-days{font-size:0.875rem;font-weight:600;color:var(--primary)}

/* ===== TESTIMONIALS ===== */
.testimonials-grid{display:grid;gap:1.5rem;max-width:64rem;margin:0 auto}
@media(min-width:768px){.testimonials-grid{grid-template-columns:repeat(2,1fr)}}
.testimonial-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:0.75rem}
.testimonial-author{display:flex;align-items:center;gap:0.75rem}
.author-avatar{
  width:2.5rem;height:2.5rem;border-radius:9999px;
  background:var(--muted);display:flex;align-items:center;justify-content:center;
  font-size:1.125rem;font-weight:600;color:var(--muted-fg);
}
.author-name{font-size:0.875rem;font-weight:600;color:var(--fg)}
.author-meta{font-size:0.75rem;color:var(--muted-fg)}
.testimonial-date{font-size:0.75rem;color:var(--muted-fg)}
.tp-stars{display:flex;gap:2px;margin-bottom:0.75rem}
.tp-star{
  width:1.25rem;height:1.25rem;background:var(--emerald);
  display:flex;align-items:center;justify-content:center;
}
.tp-star svg{width:0.875rem;height:0.875rem;fill:white;color:white}
.testimonial-headline{font-weight:700;margin-bottom:0.5rem;font-size:0.9375rem}
.testimonial-content{font-size:0.875rem;color:rgba(30,41,59,.8);line-height:1.6;margin-bottom:1rem}
.testimonial-exp{font-size:0.75rem;color:var(--muted-fg)}
.testimonial-exp strong{font-weight:600}

/* ===== GUARANTEE ===== */
.guarantee-section{text-align:center}
.guarantee-icon{
  width:5rem;height:5rem;border-radius:9999px;
  background:rgba(59,130,246,.15);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.5rem;
  box-shadow:0 0 20px rgba(59,130,246,.2);
}
.guarantee-icon svg{width:2.5rem;height:2.5rem;color:var(--primary)}

/* ===== WHO IS THIS FOR ===== */
.who-grid{display:grid;gap:2rem;max-width:56rem;margin:0 auto}
@media(min-width:768px){.who-grid{grid-template-columns:repeat(2,1fr)}}
.who-card-perfect{border:1px solid var(--border)}
.who-card-not{border:1px solid rgba(239,68,68,.3)}

/* ===== FAQ ===== */
.faq-list{max-width:42rem;margin:0 auto}
.faq-item{
  background:var(--card);border:1px solid var(--border);
  border-radius:0.75rem;margin-bottom:0.75rem;overflow:hidden;
}
.faq-question{
  width:100%;padding:1rem;display:flex;align-items:center;justify-content:space-between;
  gap:0.5rem;text-align:left;font-weight:500;
  font-size:0.9375rem;color:var(--fg);cursor:pointer;
}
.faq-question:hover{color:var(--primary)}
.faq-question .faq-icon{display:flex;align-items:center;gap:0.5rem}
.faq-question .faq-icon svg{width:1rem;height:1rem;color:var(--primary);flex-shrink:0}
.faq-chevron{
  width:1rem;height:1rem;flex-shrink:0;
  transition:transform .2s;color:var(--muted-fg);
}
.faq-item.open .faq-chevron{transform:rotate(180deg)}
.faq-answer{
  padding:0 1rem 1rem;font-size:0.875rem;color:var(--muted-fg);
  line-height:1.6;display:none;
}
.faq-item.open .faq-answer{display:block}

/* ===== FINAL CTA ===== */
.final-cta{text-align:center;position:relative;overflow:hidden}
.final-cta-glow{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:600px;height:400px;
  background:radial-gradient(ellipse at center,rgba(59,130,246,.15),rgba(59,130,246,.05),transparent);
  pointer-events:none;
}

/* ===== STICKY FOOTER CTA ===== */
.sticky-cta{
  position:fixed;bottom:0;left:0;right:0;z-index:90;
  background:var(--fg);transform:translateY(100%);
  transition:transform .3s;
}
.sticky-cta.visible{transform:translateY(0)}
.sticky-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:0.75rem;padding:0.75rem 1rem}
.sticky-price{color:var(--bg)}
.sticky-price .price{font-weight:700;font-size:clamp(1rem,2vw,1.125rem)}
.sticky-timer{
  display:inline-flex;align-items:center;gap:0.25rem;
  background:rgba(255,255,255,.2);padding:0.125rem 0.5rem;
  border-radius:0.25rem;font-size:0.75rem;font-family:'Space Mono',monospace;
}
.sticky-timer-label{color:rgba(255,255,255,.7);font-family:'Inter',sans-serif}
.sticky-note{font-size:0.75rem;color:var(--muted)}
.sticky-btn{
  display:flex;align-items:center;gap:0.5rem;
  background:var(--primary);color:var(--primary-fg);
  padding:0.625rem 1.5rem;border-radius:0.5rem;
  font-weight:600;font-size:0.875rem;white-space:nowrap;
}
.sticky-btn:hover{background:#2563eb}
.sticky-dismiss{
  position:absolute;top:-0.75rem;right:1rem;
  width:1.5rem;height:1.5rem;border-radius:9999px;
  background:var(--muted);display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 4px rgba(0,0,0,.1);
}
.sticky-dismiss svg{width:1rem;height:1rem;color:var(--fg)}

/* ===== LIVE NOTIFICATION ===== */
.live-notification{
  position:fixed;bottom:5rem;left:1rem;z-index:80;
  background:var(--card);border:2px solid rgba(59,130,246,.3);
  border-radius:0.5rem;box-shadow:0 4px 15px rgba(0,0,0,.1);
  padding:0.75rem;display:flex;align-items:center;gap:0.75rem;
  max-width:280px;
  opacity:0;transform:translateX(-100%);
  transition:opacity .5s,transform .5s;
}
.live-notification.show{opacity:1;transform:translateX(0)}
.notif-icon{
  width:2.5rem;height:2.5rem;border-radius:9999px;
  background:rgba(59,130,246,.15);display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.notif-icon svg{width:1.25rem;height:1.25rem;color:var(--primary)}
.notif-text strong{font-size:0.875rem;color:var(--fg)}
.notif-text p{font-size:0.75rem;color:var(--muted-fg);margin:0}
.notif-dot{
  width:0.5rem;height:0.5rem;border-radius:9999px;background:#22c55e;flex-shrink:0;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn{
  position:fixed;bottom:6rem;right:1.5rem;z-index:80;
}
.whatsapp-btn a{display:block;position:relative}
.whatsapp-pulse{
  position:absolute;inset:0;background:#22c55e;border-radius:9999px;
  animation:waPulse 2s infinite;opacity:.3;
}
@keyframes waPulse{0%{transform:scale(1);opacity:.3}100%{transform:scale(1.4);opacity:0}}
.whatsapp-circle{
  position:relative;width:3.5rem;height:3.5rem;
  background:#22c55e;border-radius:9999px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(34,197,94,.4);
}
.whatsapp-circle svg{width:1.75rem;height:1.75rem;color:white}

/* ===== FOOTER ===== */
.site-footer{background:var(--card);border-top:1px solid var(--border);padding:3rem 0}
.footer-grid{display:grid;gap:2rem;margin-bottom:2rem}
@media(min-width:768px){.footer-grid{grid-template-columns:2fr 1fr 1fr}}
.footer-brand h4{font-size:1.25rem;margin-bottom:0.5rem}
.footer-brand p{color:var(--muted-fg);font-size:0.875rem;margin-bottom:1rem}
.footer-contact-item{
  display:flex;align-items:center;gap:0.5rem;
  color:var(--muted-fg);font-size:0.875rem;margin-bottom:0.5rem;
}
.footer-contact-item:hover{color:var(--primary)}
.footer-contact-item svg{width:1rem;height:1rem;flex-shrink:0}
.footer-heading{font-weight:600;margin-bottom:1rem;font-size:1rem}
.footer-links{list-style:none}
.footer-links li{margin-bottom:0.5rem}
.footer-links a{
  display:flex;align-items:center;gap:0.5rem;
  font-size:0.875rem;color:var(--muted-fg);
}
.footer-links a:hover{color:var(--primary)}
.footer-links a svg{width:1rem;height:1rem}
.footer-disclaimer{
  padding-top:2rem;border-top:1px solid var(--border);
  font-size:0.75rem;color:rgba(100,116,139,.7);
  max-width:56rem;margin:0 auto;
}
.footer-disclaimer p{margin-bottom:1rem}
.footer-copyright{
  margin-top:1.5rem;padding-top:1.5rem;border-top:1px solid var(--border);
  text-align:center;font-size:0.875rem;color:var(--muted-fg);
}

/* Section headings */
.section-heading{text-align:center;margin-bottom:3rem}
.section-heading h2{margin-bottom:0.5rem}
.section-heading p,.section-heading h6{color:var(--muted-fg);font-weight:400}

/* ===== UTILITIES ===== */
.text-center{text-align:center}
.text-primary{color:var(--primary)}
.text-muted{color:var(--muted-fg)}
.text-sm{font-size:0.875rem}
.text-xs{font-size:0.75rem}
.font-bold{font-weight:700}
.font-semibold{font-weight:600}
.font-medium{font-weight:500}
.mb-2{margin-bottom:0.5rem}
.mb-4{margin-bottom:1rem}
.mb-6{margin-bottom:1.5rem}
.mb-8{margin-bottom:2rem}
.mt-4{margin-top:1rem}
.mt-6{margin-top:1.5rem}
.mx-auto{margin-left:auto;margin-right:auto}
.max-w-2xl{max-width:42rem}
.max-w-3xl{max-width:48rem}
.max-w-4xl{max-width:56rem}

/* ===== RESPONSIVE ===== */
@media(max-width:767px){
  .hide-mobile{display:none!important}
}
@media(min-width:768px){
  .hide-desktop{display:none!important}
}

/* ===== THANK YOU PAGE FORM ===== */
.form-group{margin-bottom:1rem}
.form-label{display:block;font-size:0.875rem;font-weight:500;margin-bottom:0.375rem;color:var(--fg)}
.form-input{
  width:100%;padding:0.625rem 0.75rem;
  border:1px solid var(--border);border-radius:var(--radius);
  font-size:0.875rem;font-family:inherit;color:var(--fg);
  background:var(--bg);outline:none;
  transition:border-color .2s,box-shadow .2s;
}
.form-input:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(59,130,246,.1)}
.form-input:invalid:not(:placeholder-shown){border-color:var(--destructive)}
.form-input:valid:not(:placeholder-shown){border-color:var(--primary)}
select.form-input{appearance:auto;cursor:pointer}
.form-desc{font-size:0.75rem;color:var(--muted-fg);margin-top:0.25rem}
.form-row{display:grid;gap:1rem}
@media(min-width:640px){.form-row{grid-template-columns:1fr 1fr}}
