/* ==========================================================================
   ObeeSmart — Futuristic Hive UI v2.0
   Dark (default) + Light theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ========== Dark Theme (default) ========== */
:root {
  --bg-0:#05060a;--bg-1:#070915;--bg-2:#0c0e18;
  --bg-card:rgba(255,255,255,0.04);--bg-card-hover:rgba(255,255,255,0.08);
  --glass:rgba(255,255,255,0.06);--glass-strong:rgba(0,0,0,0.35);
  --stroke:rgba(255,255,255,0.10);--stroke-2:rgba(255,255,255,0.18);--stroke-honey:rgba(255,176,0,0.3);
  --text:rgba(255,255,255,0.92);--text-secondary:rgba(255,255,255,0.68);--text-muted:rgba(255,255,255,0.45);--text-inverse:#05060a;
  --honey:#ffcc33;--honey-bright:#ffe066;--amber:#ffb000;--amber-dark:#cc8800;
  --neon:#3df2ff;--danger:#ff4d7d;--success:#00e676;
  --glow-honey:0 0 30px rgba(255,176,0,0.25);--glow-text:0 0 20px rgba(255,176,0,0.35);
  --shadow:0 20px 60px rgba(0,0,0,0.55);--shadow-soft:0 10px 40px rgba(0,0,0,0.35);--shadow-card:0 8px 32px rgba(0,0,0,0.4);
  --radius-sm:8px;--radius:16px;--radius-lg:24px;--radius-xl:32px;--radius-full:9999px;
  --container:1140px;--header-height:80px;
  --ease:cubic-bezier(0.4,0,0.2,1);--duration:300ms;
  --font-sans:'Plus Jakarta Sans',system-ui,sans-serif;--font-mono:'JetBrains Mono',monospace;
}

/* ========== Light Theme ========== */
[data-theme="light"] {
  --bg-0:#f8f6f1;--bg-1:#ffffff;--bg-2:#f0ebe0;
  --bg-card:rgba(0,0,0,0.03);--bg-card-hover:rgba(0,0,0,0.06);
  --glass:rgba(255,255,255,0.7);--glass-strong:rgba(255,255,255,0.9);
  --stroke:rgba(0,0,0,0.08);--stroke-2:rgba(0,0,0,0.12);--stroke-honey:rgba(255,176,0,0.4);
  --text:rgba(0,0,0,0.87);--text-secondary:rgba(0,0,0,0.65);--text-muted:rgba(0,0,0,0.45);--text-inverse:#ffffff;
  --honey:#e6a800;--honey-bright:#ffcc33;--amber:#cc8800;--amber-dark:#996600;
  --glow-honey:0 0 30px rgba(255,176,0,0.15);--glow-text:0 0 15px rgba(255,176,0,0.2);
  --shadow:0 20px 60px rgba(0,0,0,0.12);--shadow-soft:0 10px 40px rgba(0,0,0,0.08);--shadow-card:0 8px 32px rgba(0,0,0,0.1);
}

/* ========== Reset ========== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{min-height:100vh;font-family:var(--font-sans);font-weight:400;line-height:1.6;color:var(--text);background:var(--bg-0);overflow-x:hidden;transition:background var(--duration) var(--ease),color var(--duration) var(--ease)}

/* Animated background */
body::before{content:"";position:fixed;inset:-20%;background:radial-gradient(ellipse 1000px 600px at 15% 10%,rgba(255,176,0,0.12),transparent 50%),radial-gradient(ellipse 800px 500px at 85% 20%,rgba(61,242,255,0.10),transparent 50%),radial-gradient(ellipse 900px 500px at 50% 90%,rgba(255,77,125,0.08),transparent 50%);filter:blur(60px);animation:drift 18s ease-in-out infinite alternate;pointer-events:none;z-index:-2}
[data-theme="light"] body::before{background:radial-gradient(ellipse 1000px 600px at 15% 10%,rgba(255,176,0,0.08),transparent 50%),radial-gradient(ellipse 800px 500px at 85% 20%,rgba(61,242,255,0.06),transparent 50%);opacity:0.6}
@keyframes drift{0%{transform:translate3d(-2%,-1%,0) scale(1)}100%{transform:translate3d(2%,1%,0) scale(1.02)}}

/* Hex pattern */
body::after{content:"";position:fixed;inset:0;pointer-events:none;z-index:-1;opacity:0.08;background:linear-gradient(120deg,var(--stroke-2) 0 1px,transparent 1px 100%),linear-gradient(60deg,var(--stroke-2) 0 1px,transparent 1px 100%),linear-gradient(0deg,var(--stroke) 0 1px,transparent 1px 100%);background-size:42px 72px;mask-image:radial-gradient(ellipse 800px 500px at 50% 0%,black 30%,transparent 70%)}
[data-theme="light"] body::after{opacity:0.04}

img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none;transition:all var(--duration) var(--ease)}
ul,ol{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
::selection{background:var(--honey);color:var(--text-inverse)}

/* ========== Typography ========== */
h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.2;color:var(--text)}
h1{font-size:clamp(2.5rem,6vw,4rem);letter-spacing:-0.03em}
h2{font-size:clamp(1.75rem,4vw,2.5rem);letter-spacing:-0.02em}
h3{font-size:clamp(1.25rem,3vw,1.75rem)}
h4{font-size:clamp(1.1rem,2vw,1.35rem)}
p{margin-bottom:1rem}
.text-gradient{background:linear-gradient(135deg,var(--honey-bright) 0%,var(--honey) 40%,var(--amber) 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.text-honey{color:var(--honey)}.text-neon{color:var(--neon)}.text-muted{color:var(--text-secondary)}

/* ========== Layout ========== */
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 1.5rem}
.section{padding:5rem 0;position:relative}
.section-alt{background:var(--bg-card);border-top:1px solid var(--stroke);border-bottom:1px solid var(--stroke)}

/* ========== Header ========== */
.header{position:fixed;top:0;left:0;width:100%;height:var(--header-height);z-index:1000;background:var(--glass-strong);backdrop-filter:blur(20px);border-bottom:1px solid var(--stroke);transition:all var(--duration) var(--ease)}
.header.scrolled{box-shadow:var(--shadow-soft)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:100%;max-width:var(--container);margin:0 auto;padding:0 1.5rem}

/* Brand */
.brand{display:flex;align-items:center;gap:0.75rem}
.brand-mark{font-size:2.25rem;line-height:1;filter:drop-shadow(var(--glow-honey));animation:pulse-glow 3s ease-in-out infinite}
@keyframes pulse-glow{0%,100%{filter:drop-shadow(0 0 12px rgba(255,176,0,0.3));transform:scale(1)}50%{filter:drop-shadow(0 0 20px rgba(255,176,0,0.5));transform:scale(1.05)}}
.brand-text{display:flex;flex-direction:column}
.brand-title{font-size:1.35rem;font-weight:800;letter-spacing:-0.02em;background:linear-gradient(135deg,var(--text) 0%,var(--text-secondary) 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.brand-sub{font-size:0.65rem;color:var(--text-muted);letter-spacing:0.08em;text-transform:uppercase}

/* Navigation */
.nav{display:flex;align-items:center;gap:1.5rem}
.nav-links{display:flex;gap:0.5rem}
.nav-link{font-size:0.9rem;font-weight:500;color:var(--text-secondary);padding:0.6rem 1rem;border-radius:var(--radius-full);border:1px solid transparent;position:relative;overflow:hidden}
.nav-link::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,var(--honey),var(--amber));opacity:0;transition:opacity var(--duration) var(--ease);z-index:-1;border-radius:inherit}
.nav-link:hover,.nav-link.active{color:var(--text-inverse);border-color:var(--stroke-honey);box-shadow:var(--glow-honey)}
.nav-link:hover::before,.nav-link.active::before{opacity:1}

/* Counter Badge */
.counter-badge{display:flex;align-items:center;gap:0.5rem;padding:0.5rem 1rem;background:var(--bg-card);border:1px solid var(--stroke);border-radius:var(--radius-full);font-size:0.85rem;backdrop-filter:blur(10px)}
.counter-badge .icon{font-size:1.1rem}
.counter-badge .count{font-family:var(--font-mono);font-weight:700;color:var(--honey);text-shadow:var(--glow-text)}

/* Theme Toggle */
.theme-toggle{width:44px;height:44px;display:flex;align-items:center;justify-content:center;background:var(--bg-card);border:1px solid var(--stroke);border-radius:var(--radius-full);font-size:1.25rem;cursor:pointer;transition:all var(--duration) var(--ease)}
.theme-toggle:hover{background:var(--bg-card-hover);border-color:var(--stroke-honey);box-shadow:var(--glow-honey);transform:rotate(15deg)}

/* Nav CTA */
.nav-cta{padding:0.6rem 1.25rem;background:linear-gradient(135deg,var(--honey),var(--amber));color:var(--text-inverse);font-weight:600;font-size:0.9rem;border-radius:var(--radius-full);border:1px solid var(--stroke-honey);box-shadow:var(--glow-honey);transition:all var(--duration) var(--ease)}
.nav-cta:hover{background:linear-gradient(135deg,var(--honey-bright),var(--honey));transform:translateY(-2px);box-shadow:var(--glow-honey),var(--shadow-soft)}

/* Mobile Menu */
.menu-toggle{display:none;flex-direction:column;gap:5px;padding:0.5rem}
.menu-toggle span{width:24px;height:2px;background:var(--text);border-radius:2px;transition:all var(--duration) var(--ease)}
.mobile-nav{display:none;position:fixed;top:var(--header-height);left:0;right:0;background:var(--glass-strong);backdrop-filter:blur(20px);border-bottom:1px solid var(--stroke);padding:1rem;z-index:999}
.mobile-nav.active{display:block}
.mobile-nav a{display:block;padding:1rem;color:var(--text);border-bottom:1px solid var(--stroke);font-weight:500}
.mobile-nav a:last-child{border-bottom:none}

/* ========== Hero ========== */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;padding-top:var(--header-height);overflow:hidden}
.hero-content{position:relative;z-index:2;max-width:720px}
.hero-badge{display:inline-flex;align-items:center;gap:0.5rem;padding:0.5rem 1rem;background:var(--bg-card);border:1px solid var(--stroke-honey);border-radius:var(--radius-full);font-size:0.85rem;color:var(--honey);margin-bottom:1.5rem;backdrop-filter:blur(10px);animation:fadeSlideUp 0.6s var(--ease) forwards}
.hero-title{margin-bottom:1.5rem;animation:fadeSlideUp 0.6s var(--ease) 0.1s forwards;opacity:0}
.hero-subtitle{font-size:1.15rem;color:var(--text-secondary);max-width:560px;margin-bottom:2rem;animation:fadeSlideUp 0.6s var(--ease) 0.2s forwards;opacity:0}
.hero-actions{display:flex;flex-wrap:wrap;gap:1rem;margin-bottom:3rem;animation:fadeSlideUp 0.6s var(--ease) 0.3s forwards;opacity:0}
.hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;padding-top:2rem;border-top:1px solid var(--stroke);animation:fadeSlideUp 0.6s var(--ease) 0.4s forwards;opacity:0}
.stat-item{text-align:center}
.stat-value{font-family:var(--font-mono);font-size:clamp(2rem,4vw,2.75rem);font-weight:800;color:var(--honey);text-shadow:var(--glow-text);line-height:1}
.stat-label{font-size:0.85rem;color:var(--text-muted);margin-top:0.25rem}
@keyframes fadeSlideUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}

/* ========== Buttons ========== */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;padding:0.875rem 1.75rem;font-family:var(--font-sans);font-size:0.95rem;font-weight:600;border-radius:var(--radius-full);border:1px solid transparent;cursor:pointer;transition:all var(--duration) var(--ease)}
.btn-primary{background:linear-gradient(135deg,var(--honey),var(--amber));color:var(--text-inverse);border-color:var(--stroke-honey);box-shadow:var(--glow-honey)}
.btn-primary:hover{background:linear-gradient(135deg,var(--honey-bright),var(--honey));transform:translateY(-3px);box-shadow:var(--glow-honey),var(--shadow-soft)}
.btn-outline{background:transparent;color:var(--text);border:2px solid var(--stroke-2)}
.btn-outline:hover{border-color:var(--honey);color:var(--honey);box-shadow:var(--glow-honey)}
.btn-sm{padding:0.5rem 1.25rem;font-size:0.85rem}

/* ========== Cards ========== */
.card{background:var(--bg-card);border:1px solid var(--stroke);border-radius:var(--radius-lg);padding:1.75rem;backdrop-filter:blur(10px);transition:all var(--duration) var(--ease);position:relative;overflow:hidden}
.card::before{content:'';position:absolute;top:-100px;right:-100px;width:200px;height:200px;background:radial-gradient(circle,rgba(255,176,0,0.15),transparent 60%);opacity:0;transition:opacity var(--duration) var(--ease);pointer-events:none}
.card:hover{transform:translateY(-8px);border-color:var(--stroke-honey);box-shadow:var(--shadow-card),var(--glow-honey)}
.card:hover::before{opacity:1}
.card-icon{width:56px;height:56px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,rgba(255,176,0,0.15),rgba(255,176,0,0.05));border:1px solid var(--stroke-honey);border-radius:var(--radius);font-size:1.5rem;margin-bottom:1.25rem}
.card-title{font-size:1.15rem;margin-bottom:0.5rem}
.card-text{color:var(--text-secondary);font-size:0.9rem;margin-bottom:0}

/* Grids */
.grid-2{display:grid;grid-template-columns:repeat(auto-fit,minmax(380px,1fr));gap:1.5rem}
.grid-3{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}
.grid-4{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.25rem}

/* ========== Product Cards ========== */
.product-card{position:relative;background:linear-gradient(145deg,var(--bg-card),var(--bg-card-hover));border:1px solid var(--stroke);border-radius:var(--radius-xl);overflow:hidden;transition:all var(--duration) var(--ease)}
.product-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--amber-dark),var(--honey),var(--honey-bright))}
.product-card:hover{transform:translateY(-10px);border-color:var(--stroke-honey);box-shadow:var(--shadow),var(--glow-honey)}
.product-image{height:200px;background:var(--bg-2);display:flex;align-items:center;justify-content:center;position:relative}
.product-image .placeholder-icon{font-size:4rem;opacity:0.25}
.product-badge{position:absolute;top:1rem;right:1rem;padding:0.35rem 0.85rem;background:linear-gradient(135deg,var(--honey),var(--amber));color:var(--text-inverse);font-size:0.7rem;font-weight:700;text-transform:uppercase;letter-spacing:0.05em;border-radius:var(--radius-full);box-shadow:var(--glow-honey)}
.product-content{padding:1.5rem}
.product-category{font-size:0.7rem;color:var(--honey);text-transform:uppercase;letter-spacing:0.1em;margin-bottom:0.5rem}
.product-title{font-size:1.2rem;margin-bottom:0.5rem}
.product-description{color:var(--text-secondary);font-size:0.85rem;margin-bottom:1rem}
.product-features{display:flex;flex-wrap:wrap;gap:0.5rem;margin-bottom:1.25rem}
.product-feature{display:flex;align-items:center;gap:0.25rem;font-size:0.75rem;color:var(--text-secondary)}
.product-feature::before{content:'✓';color:var(--success);font-weight:700}
.product-footer{display:flex;align-items:center;justify-content:space-between;padding-top:1rem;border-top:1px solid var(--stroke)}
.product-price{font-family:var(--font-mono);font-size:1.35rem;font-weight:700;color:var(--text)}
.product-price small{font-size:0.75rem;color:var(--text-muted);font-weight:400}

/* ========== Community Cards ========== */
.community-card{background:var(--bg-card);border:1px solid var(--stroke);border-radius:var(--radius-lg);overflow:hidden;transition:all var(--duration) var(--ease)}
.community-card:hover{transform:translateY(-5px);border-color:var(--stroke-2);box-shadow:var(--shadow-card)}
.community-image{height:160px;background:var(--bg-2);display:flex;align-items:center;justify-content:center}
.community-image .placeholder-icon{font-size:3.5rem;opacity:0.2}
.community-content{padding:1.25rem}
.community-tag{display:inline-block;padding:0.25rem 0.6rem;background:linear-gradient(135deg,rgba(255,176,0,0.15),rgba(255,176,0,0.05));border:1px solid var(--stroke-honey);color:var(--honey);font-size:0.65rem;font-weight:600;text-transform:uppercase;letter-spacing:0.05em;border-radius:var(--radius-sm);margin-bottom:0.75rem}
.community-title{font-size:1.05rem;margin-bottom:0.5rem}
.community-excerpt{color:var(--text-secondary);font-size:0.85rem;margin-bottom:1rem;line-height:1.5}
.community-meta{display:flex;gap:1rem;font-size:0.75rem;color:var(--text-muted)}

/* ========== Testimonials ========== */
.testimonial-card{background:var(--bg-card);border:1px solid var(--stroke);border-radius:var(--radius-lg);padding:1.75rem;position:relative}
.testimonial-card::before{content:'"';position:absolute;top:1rem;left:1.5rem;font-family:Georgia,serif;font-size:5rem;color:var(--honey);opacity:0.15;line-height:1}
.testimonial-text{font-size:1rem;font-style:italic;color:var(--text);margin-bottom:1.25rem;position:relative;z-index:1}
.testimonial-author{display:flex;align-items:center;gap:0.75rem}
.testimonial-avatar{width:44px;height:44px;border-radius:var(--radius-full);background:var(--bg-2);display:flex;align-items:center;justify-content:center;font-size:1.25rem}
.testimonial-info h4{font-size:0.9rem;margin-bottom:0.125rem}
.testimonial-info span{font-size:0.75rem;color:var(--text-muted)}

/* ========== Steps ========== */
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:2rem;counter-reset:step}
.step{text-align:center}
.step::before{counter-increment:step;content:counter(step);display:flex;align-items:center;justify-content:center;width:56px;height:56px;margin:0 auto 1.25rem;background:linear-gradient(135deg,var(--honey),var(--amber));color:var(--text-inverse);font-family:var(--font-mono);font-size:1.35rem;font-weight:800;border-radius:var(--radius-full);box-shadow:var(--glow-honey)}
.step h3{margin-bottom:0.5rem}
.step p{color:var(--text-secondary);font-size:0.9rem;margin-bottom:0}

/* ========== Contact ========== */
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:2.5rem;align-items:start}
.contact-info h2{margin-bottom:1rem}
.contact-info>p{color:var(--text-secondary);margin-bottom:2rem}
.contact-details{display:flex;flex-direction:column;gap:1.25rem}
.contact-item{display:flex;gap:1rem}
.contact-icon{width:48px;height:48px;display:flex;align-items:center;justify-content:center;background:var(--bg-card);border:1px solid var(--stroke);border-radius:var(--radius);font-size:1.25rem;flex-shrink:0}
.contact-item h4{font-size:0.9rem;margin-bottom:0.25rem}
.contact-item p{color:var(--text-secondary);font-size:0.85rem;margin:0}
.contact-item a{color:var(--honey);border-bottom:1px dashed var(--stroke-honey)}
.contact-item a:hover{text-shadow:var(--glow-text)}

/* Contact Form */
.contact-form{background:var(--bg-card);border:1px solid var(--stroke);border-radius:var(--radius-xl);padding:2rem;backdrop-filter:blur(10px)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{margin-bottom:1.25rem}
.form-label{display:block;font-size:0.85rem;font-weight:500;margin-bottom:0.5rem;color:var(--text)}
.form-input,.form-select,.form-textarea{width:100%;padding:0.875rem 1rem;background:var(--bg-2);border:1px solid var(--stroke);border-radius:var(--radius);color:var(--text);font-family:var(--font-sans);font-size:0.9rem;transition:all var(--duration) var(--ease)}
.form-input:focus,.form-select:focus,.form-textarea:focus{outline:none;border-color:var(--honey);box-shadow:0 0 0 3px rgba(255,176,0,0.15)}
.form-textarea{resize:vertical;min-height:130px}
.form-input::placeholder,.form-textarea::placeholder{color:var(--text-muted)}
.form-select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center;padding-right:2.5rem}

/* ========== FAQ ========== */
.faq-item{background:var(--bg-card);border:1px solid var(--stroke);border-radius:var(--radius);margin-bottom:0.75rem;overflow:hidden}
.faq-question{width:100%;padding:1.25rem;background:none;text-align:left;color:var(--text);font-size:0.95rem;font-weight:500;display:flex;justify-content:space-between;align-items:center;cursor:pointer;transition:all var(--duration) var(--ease)}
.faq-question:hover{background:var(--bg-card-hover)}
.faq-question::after{content:'+';font-size:1.35rem;color:var(--honey);transition:transform var(--duration) var(--ease)}
.faq-item.active .faq-question::after{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.3s var(--ease)}
.faq-item.active .faq-answer{max-height:300px}
.faq-answer-inner{padding:0 1.25rem 1.25rem;color:var(--text-secondary);font-size:0.9rem;line-height:1.6}

/* ========== Section Header ========== */
.section-header{text-align:center;max-width:600px;margin:0 auto 3rem}
.section-header h2{margin-bottom:0.75rem}
.section-header p{color:var(--text-secondary);font-size:1.05rem;margin-bottom:0}

/* ========== CTA Section ========== */
.cta-section{text-align:center;padding:4rem 2rem;background:linear-gradient(135deg,var(--bg-card),var(--bg-card-hover));border:1px solid var(--stroke);border-radius:var(--radius-xl);position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:radial-gradient(circle,rgba(255,176,0,0.1) 0%,transparent 50%);animation:rotate 25s linear infinite}
@keyframes rotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
.cta-content{position:relative;z-index:1;max-width:550px;margin:0 auto}
.cta-content h2{margin-bottom:0.75rem}
.cta-content p{color:var(--text-secondary);margin-bottom:1.75rem}
.cta-actions{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap}

/* ========== Page Header ========== */
.page-header{padding:calc(var(--header-height) + 3rem) 0 3rem;text-align:center;background:linear-gradient(180deg,var(--bg-card) 0%,transparent 100%);position:relative}
.page-header h1{margin-bottom:0.75rem}
.page-header p{color:var(--text-secondary);font-size:1.1rem;max-width:550px;margin:0 auto}

/* ========== Footer ========== */
.footer{background:var(--glass-strong);backdrop-filter:blur(20px);border-top:1px solid var(--stroke);padding:3.5rem 0 1.5rem;margin-top:auto}
.footer-grid{display:grid;grid-template-columns:2fr repeat(3,1fr);gap:2.5rem;margin-bottom:2.5rem}
.footer-brand{max-width:260px}
.footer-brand .brand{margin-bottom:1rem}
.footer-brand>p{color:var(--text-secondary);font-size:0.85rem}
.footer-social{display:flex;gap:0.5rem;margin-top:1.25rem}
.footer-social a{width:38px;height:38px;display:flex;align-items:center;justify-content:center;background:var(--bg-card);border:1px solid var(--stroke);border-radius:var(--radius-full);font-size:1rem;transition:all var(--duration) var(--ease)}
.footer-social a:hover{background:var(--honey);border-color:var(--honey);transform:translateY(-3px)}
.footer-column h4{font-size:0.85rem;font-weight:600;margin-bottom:1rem;color:var(--text)}
.footer-links{display:flex;flex-direction:column;gap:0.5rem}
.footer-links a{color:var(--text-secondary);font-size:0.85rem}
.footer-links a:hover{color:var(--honey)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding-top:1.5rem;border-top:1px solid var(--stroke);font-size:0.8rem;color:var(--text-muted)}
.footer-bottom a{color:var(--text-secondary)}
.footer-bottom a:hover{color:var(--honey)}

/* ========== Badge Label ========== */
.badge-label{display:inline-block;padding:0.35rem 1rem;background:linear-gradient(135deg,rgba(255,176,0,0.15),rgba(255,176,0,0.05));border:1px solid var(--stroke-honey);border-radius:var(--radius-full);font-size:0.8rem;font-weight:600;color:var(--honey);letter-spacing:0.03em;margin-bottom:1rem}

/* ========== Feature Cards ========== */
.feature-card{display:flex;flex-direction:column;align-items:center;text-align:center;padding:2rem 1.5rem;background:var(--bg-card);border:1px solid var(--stroke);border-radius:var(--radius-xl);transition:all var(--duration) var(--ease);color:var(--text)}
.feature-card:hover{transform:translateY(-6px);border-color:var(--stroke-honey);box-shadow:var(--shadow-card),var(--glow-honey);background:var(--bg-card-hover)}
.feature-icon{font-size:2.5rem;margin-bottom:1rem;line-height:1}
.feature-card h3{font-size:1.1rem;margin-bottom:0.5rem}
.feature-card p{font-size:0.85rem;color:var(--text-secondary);margin-bottom:0}

/* ========== Utilities ========== */
.text-center{text-align:center}
.mb-0{margin-bottom:0}.mb-sm{margin-bottom:0.5rem}.mb-md{margin-bottom:1rem}.mb-lg{margin-bottom:1.5rem}.mb-xl{margin-bottom:2.5rem}.mt-xl{margin-top:2.5rem}

/* Stagger */
.stagger>*{opacity:0;animation:fadeSlideUp 0.6s var(--ease) forwards}
.stagger>*:nth-child(1){animation-delay:0.1s}.stagger>*:nth-child(2){animation-delay:0.15s}.stagger>*:nth-child(3){animation-delay:0.2s}.stagger>*:nth-child(4){animation-delay:0.25s}.stagger>*:nth-child(5){animation-delay:0.3s}.stagger>*:nth-child(6){animation-delay:0.35s}

/* ========== Responsive ========== */
@media(max-width:1024px){.footer-grid{grid-template-columns:repeat(2,1fr)}.contact-grid{grid-template-columns:1fr}.grid-2{grid-template-columns:1fr}}
@media(max-width:768px){:root{--header-height:70px}.nav-links,.counter-badge,.nav-cta{display:none}.menu-toggle{display:flex}.hero-stats{grid-template-columns:1fr;gap:1.5rem}.footer-grid{grid-template-columns:1fr;gap:2rem}.footer-bottom{flex-direction:column;gap:1rem;text-align:center}.form-row{grid-template-columns:1fr}.steps{gap:2.5rem}}
@media(max-width:480px){.hero-actions{flex-direction:column}.btn{width:100%}.cta-actions{flex-direction:column}.brand-sub{display:none}.grid-3,.grid-4{grid-template-columns:1fr}}
