/* LetLinkSo Custom Styles | Brand: #4499f7 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --brand: #4499f7; --brand-dark: #2a7de1; --brand-light: #7ab8fb;
  --glow: rgba(68,153,247,0.3); --glow-strong: rgba(68,153,247,0.5);
  --dark-bg: #0a0e1a; --dark-bg2: #111827; --dark-card: rgba(255,255,255,0.04);
  --light-bg: #f0f4fa; --light-bg2: #fff; --light-card: rgba(255,255,255,0.8);
  --border-dark: rgba(255,255,255,0.08); --border-light: rgba(68,153,247,0.15);
}
[data-theme="dark"] {
  --bg: var(--dark-bg); --bg2: var(--dark-bg2); --card: var(--dark-card);
  --border: var(--border-dark); --text: #f0f4fa; --text2: #94a3b8;
}
[data-theme="light"] {
  --bg: var(--light-bg); --bg2: var(--light-bg2); --card: var(--light-card);
  --border: var(--border-light); --text: #0f172a; --text2: #475569;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; transition: background .3s, color .3s; overflow-x: hidden; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }
::selection { background: var(--brand); color: #fff; }
h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,14,26,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: all .3s;
}
[data-theme="light"] .navbar { background: rgba(240,244,250,0.9); }
.navbar.scrolled { background: rgba(10,14,26,0.97); box-shadow: 0 4px 30px rgba(0,0,0,.3); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.25rem; color: #fff; }
.logo-img { height: 40px; width: auto; object-fit: contain; }
.logo-icon { width: 34px; height: 34px; background: linear-gradient(135deg, var(--brand), #667eea); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .95rem; font-weight: 900; box-shadow: 0 0 18px var(--glow); flex-shrink: 0; }
.logo-text span { color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { padding: 7px 13px; border-radius: 7px; color: var(--text2); font-size: .88rem; font-weight: 500; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); background: rgba(68,153,247,.08); }
.nav-links li { position: relative; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); background: var(--card); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text2); font-size: 1.05rem; transition: all .2s; }
.theme-toggle:hover { border-color: var(--brand); color: var(--brand); transform: rotate(20deg); }
.lang-toggle { display: flex; align-items: center; gap: 3px; padding: 5px 10px; border-radius: 7px; border: 1px solid var(--border); background: var(--card); cursor: pointer; font-size: .75rem; font-weight: 700; color: var(--text2); transition: all .2s; }
.lang-toggle:hover { border-color: var(--brand); }
.lang-toggle .al { color: var(--brand); }
.mobile-toggle { display: none; width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); background: var(--card); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.mobile-toggle span { width: 16px; height: 2px; background: var(--text); border-radius: 1px; transition: all .3s; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--bg); z-index: 999; padding: 24px; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 15px 0; font-size: 1rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-menu .ma { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
@media(max-width:768px){.nav-links{display:none}.mobile-toggle{display:flex}.lang-toggle{display:none}}

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 10px; font-size: .9rem; font-weight: 600; cursor: pointer; border: none; transition: all .3s cubic-bezier(.16,1,.3,1); text-decoration: none; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--brand), #667eea); color: #fff; box-shadow: 0 4px 20px var(--glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--glow-strong); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-ghost { background: rgba(68,153,247,.1); color: var(--brand); border: 1px solid rgba(68,153,247,.2); }
.btn-ghost:hover { background: rgba(68,153,247,.2); transform: translateY(-2px); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, #0a0e1a 0%, #0d1b2a 50%, #111827 100%); position: relative; overflow: hidden; padding-top: 70px; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(68,153,247,.12) 0%, transparent 70%); pointer-events: none; }
.hero-grid { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(68,153,247,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(68,153,247,.04) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
[data-theme="light"] .hero { background: linear-gradient(135deg, #e8f0fe 0%, #f0f4fa 50%, #e8f0fe 100%); }
[data-theme="light"] .hero::before { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(68,153,247,.1) 0%, transparent 70%); }
.hero-content { position: relative; z-index: 1; max-width: 780px; padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border-radius: 100px; background: rgba(68,153,247,.12); border: 1px solid rgba(68,153,247,.25); color: var(--brand); font-size: .75rem; font-weight: 700; margin-bottom: 22px; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: pd 2s infinite; }
@keyframes pd { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.hero h1 { color: #fff; margin-bottom: 22px; background: linear-gradient(135deg, #fff 0%, #c4d4f0 50%, #fff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
[data-theme="light"] .hero h1 { background: linear-gradient(135deg, #0f172a 0%, #334155 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.12rem; color: var(--text2); margin-bottom: 34px; max-width: 520px; line-height: 1.8; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.85rem; font-weight: 800; color: var(--brand); }
.stat-label { font-size: .75rem; color: var(--text2); margin-top: 2px; }

.hero-card { position: absolute; right: 56px; top: 50%; transform: translateY(-50%); width: 360px; z-index: 2; background: var(--card); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 24px; padding: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.2); animation: fc 6s ease-in-out infinite; }
.hero-card-img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }
@keyframes fc { 0%,100%{transform:translateY(-50%) translateX(0)} 50%{transform:translateY(-52%) translateX(-8px)} }
.hcl { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.hct { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; }
.sr { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sr:last-child { border-bottom: none; }
.sr-l { font-size: .8rem; color: var(--text2); }
.sr-v { font-size: .8rem; font-weight: 600; }
.hsb { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 10px; background: rgba(68,153,247,.08); border: 1px solid rgba(68,153,247,.15); margin-top: 4px; }
.hsn { font-family: 'Space Grotesk', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--brand); line-height: 1; }
.hsu { font-size: .7rem; color: var(--text2); }
.hsl { font-size: .75rem; font-weight: 600; margin-left: auto; }
@media(max-width:1024px){.hero-card{display:none}}

/* Sections */
.section { padding: 96px 0; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.section-label::before { content: ''; width: 18px; height: 2px; background: var(--brand); border-radius: 1px; }
.section-header { margin-bottom: 52px; max-width: 580px; }
.section-header p { margin-top: 12px; font-size: 1.02rem; }

/* Cards */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 26px; transition: all .4s cubic-bezier(.16,1,.3,1); }
.card:hover { transform: translateY(-6px); border-color: rgba(68,153,247,.3); box-shadow: 0 0 40px var(--glow); }
.card-icon { width: 46px; height: 46px; border-radius: 10px; background: rgba(68,153,247,.1); border: 1px solid rgba(68,153,247,.15); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 16px; transition: all .3s; }
.card:hover .card-icon { background: rgba(68,153,247,.15); box-shadow: 0 0 18px var(--glow); }
.card h4 { margin-bottom: 7px; }
.card p { font-size: .88rem; }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media(max-width:1024px){.value-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.value-grid{grid-template-columns:1fr}}

/* Categories */
.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cat-card { background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 34px 26px; text-align: center; transition: all .4s cubic-bezier(.16,1,.3,1); text-decoration: none; cursor: pointer; }
.cat-card:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(68,153,247,.4); box-shadow: 0 0 40px var(--glow); }
.cat-icon { width: 64px; height: 64px; margin: 0 auto 16px; background: linear-gradient(135deg, rgba(68,153,247,.15), rgba(68,153,247,.05)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.cat-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cat-card p { font-size: .85rem; margin-bottom: 16px; }
.cat-link { display: inline-flex; align-items: center; gap: 5px; color: var(--brand); font-size: .82rem; font-weight: 600; }
.cat-link svg { transition: transform .2s; }
.cat-card:hover .cat-link svg { transform: translateX(4px); }
@media(max-width:768px){.category-grid{grid-template-columns:1fr}}

/* Featured Product */
.fs { background: var(--bg2); }
.fp { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
@media(max-width:768px){.fp{grid-template-columns:1fr}}
.pi-wrapper { position: relative; border-radius: 22px; background: linear-gradient(145deg, rgba(68,153,247,.06), rgba(68,153,247,.02)); border: 1px solid var(--border); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-direction: column; gap: 12px; color: var(--text2); }
.pi-wrapper::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, rgba(68,153,247,.08), transparent 70%); }
.pi-icon { font-size: 2.2rem; animation: ps 3s ease-in-out infinite; }
@keyframes ps { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
.pi-note { font-size: .75rem; }
.pbadge { display: inline-block; padding: 4px 12px; border-radius: 100px; background: rgba(68,153,247,.12); border: 1px solid rgba(68,153,247,.2); color: var(--brand); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.pi h2 { margin-bottom: 12px; }
.pi > p { margin-bottom: 22px; }
.specs-g { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; margin-bottom: 26px; }
.si { display: flex; align-items: center; gap: 9px; padding: 8px 11px; border-radius: 8px; background: rgba(68,153,247,.04); border: 1px solid var(--border); }
.si-icon { color: var(--brand); font-size: .95rem; flex-shrink: 0; }
.si-text { font-size: .78rem; font-weight: 500; }
.pa { display: flex; gap: 10px; flex-wrap: wrap; }
@media(max-width:640px){.specs-g{grid-template-columns:1fr}}

/* Use Cases */
.uc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.uc-card { padding: 30px 22px; background: var(--card); border: 1px solid var(--border); border-radius: 18px; transition: all .4s cubic-bezier(.16,1,.3,1); }
.uc-card:hover { border-color: rgba(68,153,247,.3); transform: translateY(-4px); box-shadow: 0 0 40px var(--glow); }
.uc-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.6rem; font-weight: 900; color: rgba(68,153,247,.12); line-height: 1; margin-bottom: 12px; }
.uc-card h4 { margin-bottom: 10px; }
@media(max-width:768px){.uc-grid{grid-template-columns:1fr}}

/* Trust */
.trust-section { background: var(--bg2); }
.trust-g { display: flex; justify-content: center; flex-wrap: wrap; gap: 26px 40px; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: .85rem; font-weight: 600; }
.trust-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(68,153,247,.1); border: 1px solid rgba(68,153,247,.2); display: flex; align-items: center; justify-content: center; color: var(--brand); font-size: .7rem; }

/* CTA */
.cta-section { padding: 96px 0; background: linear-gradient(135deg, rgba(68,153,247,.06) 0%, transparent 60%); }
.cta-box { text-align: center; max-width: 580px; margin: 0 auto; padding: 52px 36px; background: var(--card); border: 1px solid rgba(68,153,247,.2); border-radius: 22px; backdrop-filter: blur(10px); }
.cta-box h2 { margin-bottom: 12px; }
.cta-box p { margin-bottom: 26px; }
.btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Page Header */
.page-header { padding: 130px 0 70px; background: linear-gradient(135deg, #0a0e1a 0%, #0d1b2a 50%, #111827 100%); position: relative; text-align: center; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(68,153,247,.1) 0%, transparent 70%); }
.page-header h1 { color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.page-header p { color: var(--text2); font-size: 1.05rem; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 22px; position: relative; z-index: 1; }
.breadcrumb a { font-size: .82rem; color: var(--text2); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { font-size: .82rem; color: var(--brand); }

/* Product Detail */
.pd-section { padding: 76px 0; }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
@media(max-width:768px){.pd-grid{grid-template-columns:1fr}}
.pgallery { position: sticky; top: 90px; }
.gallery-main { border-radius: 22px; overflow: hidden; background: linear-gradient(145deg, rgba(68,153,247,.05), rgba(68,153,247,.02)); border: 1px solid var(--border); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; cursor: zoom-in; transition: all .3s; }
.gallery-main:hover { border-color: var(--brand); transform: scale(1.02); }
.gallery-main-img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-main:hover .gallery-main-img { transform: scale(1.05); }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumb { width: 80px; height: 80px; border-radius: 10px; overflow: hidden; background: var(--card); border: 2px solid var(--border); cursor: pointer; transition: all .2s; position: relative; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb span { position: absolute; bottom: 0; left: 0; right: 0; font-size: .55rem; color: var(--text2); background: rgba(0,0,0,0.6); padding: 2px; text-align: center; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--brand); transform: translateY(-2px); }

/* Lightbox */
.lightbox { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.95); z-index: 2000; align-items: center; justify-content: center; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 90%; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 2rem; cursor: pointer; }
.pd h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 6px; }
.pmodel { font-size: .85rem; color: var(--text2); margin-bottom: 18px; font-family: monospace; }
.pd > p { margin-bottom: 26px; }
.dst { width: 100%; border-collapse: collapse; margin-bottom: 26px; }
.dst tr { border-bottom: 1px solid var(--border); }
.dst tr:last-child { border-bottom: none; }
.dst td { padding: 11px 0; font-size: .88rem; }
.dst td:first-child { color: var(--text2); width: 38%; }
.dst td:last-child { font-weight: 600; }
.pd .pa { margin-top: 24px; }

/* About */
.about-section { padding: 76px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.about-image { border-radius: 22px; background: linear-gradient(135deg, rgba(68,153,247,.08), rgba(68,153,247,.03)); border: 1px solid var(--border); aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; }
.about-image span { color: var(--text2); font-size: .82rem; }
.about-text p { margin-bottom: 14px; }
.strengths-g { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 36px; }
@media(max-width:768px){.about-grid{grid-template-columns:1fr}}
@media(max-width:640px){.strengths-g{grid-template-columns:1fr}}

/* Contact */
.contact-section { padding: 76px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; }
@media(max-width:768px){.contact-grid{grid-template-columns:1fr}}
.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.cocard { padding: 26px; background: var(--card); border: 1px solid var(--border); border-radius: 18px; transition: all .3s; }
.cocard:hover { border-color: rgba(68,153,247,.3); box-shadow: 0 0 30px var(--glow); }
.cicon { width: 44px; height: 44px; border-radius: 10px; background: rgba(68,153,247,.1); border: 1px solid rgba(68,153,247,.15); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px; }
.cocard h4 { margin-bottom: 7px; }
.cocard p { font-size: .88rem; }
.cname { font-weight: 600; color: var(--text); font-size: .88rem; }
.cemail { color: var(--brand); font-size: .85rem; }
.ctime { font-size: .78rem; color: var(--text2); margin-top: 3px; }

.form-wrapper { background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 36px; }
.form-wrapper h3 { margin-bottom: 22px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 7px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 11px 14px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font-size: .92rem; font-family: 'Inter', sans-serif; transition: border-color .2s; -webkit-appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(68,153,247,.1); }
.fg textarea { resize: vertical; min-height: 130px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:640px){.frow{grid-template-columns:1fr}}
.form-success { display: none; padding: 18px; border-radius: 10px; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2); color: #22c55e; font-weight: 600; text-align: center; margin-top: 14px; }

/* Footer */
.footer { background: var(--dark-bg2); border-top: 1px solid var(--border); padding: 52px 0 26px; }
[data-theme="light"] .footer { background: var(--light-bg2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 34px; margin-bottom: 40px; }
.flogo { display: flex; align-items: center; gap: 9px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: 13px; }
[data-theme="light"] .flogo { color: var(--text); }
.fdesc { font-size: .85rem; color: var(--text2); margin-top: 9px; }
.footer-col h5 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text2); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: .85rem; color: var(--text2); transition: color .2s; }
.footer-col ul a:hover { color: var(--brand); }
.fc-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; font-size: .82rem; color: var(--text2); }
.fc-icon { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 9px; }
.footer-bottom p { font-size: .75rem; color: var(--text2); }
@media(max-width:768px){.footer-grid{grid-template-columns:1fr}.footer-bottom{flex-direction:column;text-align:center}}

/* Animations */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.s1 { transition-delay: .1s; } .s2 { transition-delay: .2s; } .s3 { transition-delay: .3s; } .s4 { transition-delay: .4s; }

/* Responsive */
@media(max-width:768px){.section{padding:60px 0}.hero-content{padding:60px 0}.hero-stats{gap:22px}.cta-box{padding:36px 22px}.form-wrapper{padding:24px}}
