/* ============================================================
   FRAMITE AI STUDIO — Premium UI v2.0
   Aesthetic: Modern AI Studio — Clean, Bold, Premium
   Fonts: Outfit (display) + Plus Jakarta Sans (body)
   Primary: Light | Secondary: Dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --brand:       #0066FF;
  --brand-dark:  #0052CC;
  --brand-light: #EBF3FF;
  --gold:        #F59E0B;
  --gold-light:  #FEF3C7;
  --bg:          #FFFFFF;
  --bg2:         #F8FAFF;
  --bg3:         #F1F5FF;
  --card:        #FFFFFF;
  --border:      #E5EAF5;
  --border2:     #D0DAF0;
  --text:        #0A0F1E;
  --text2:       #3D4A6B;
  --text3:       #8892AA;
  --white:       #FFFFFF;
  --black:       #0A0F1E;
  --success:     #10B981;
  --error:       #EF4444;
  --font-display:'Outfit', sans-serif;
  --font-body:   'Plus Jakarta Sans', sans-serif;
  --radius:      20px;
  --radius-md:   12px;
  --radius-sm:   8px;
  --shadow-sm:   0 2px 8px rgba(0,102,255,0.06);
  --shadow:      0 8px 40px rgba(0,102,255,0.10);
  --shadow-lg:   0 24px 80px rgba(0,102,255,0.14);
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
  --header-h:    72px;
}

[data-theme="dark"] {
  --bg:         #070B18;
  --bg2:        #0D1225;
  --bg3:        #121930;
  --card:       #0D1225;
  --border:     rgba(255,255,255,0.08);
  --border2:    rgba(255,255,255,0.12);
  --text:       #F0F4FF;
  --text2:      #A0AABF;
  --text3:      #5A6480;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
  --shadow:     0 8px 40px rgba(0,0,0,0.4);
  --shadow-lg:  0 24px 80px rgba(0,0,0,0.5);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body); background: var(--bg); color: var(--text);
  line-height: 1.7; overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--text2); max-width: 64ch; line-height: 1.75; }

/* ---- Layout ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1360px; margin: 0 auto; padding: 0 40px; }
section { padding: 100px 0; }

/* ---- Gradient Text ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, #7B2FFF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #EF4444 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ---- Header ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); display: flex; align-items: center;
  transition: all 0.3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .site-header.scrolled {
  background: rgba(7,11,24,0.92);
}
.header-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  color: var(--text); text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, #7B2FFF 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,102,255,0.35);
}
.logo-icon svg { width: 22px; height: 22px; }
.logo span { color: var(--brand); }

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 0.92rem;
  color: var(--text2); padding: 8px 16px; border-radius: var(--radius-sm);
  text-decoration: none; transition: all var(--transition); letter-spacing: 0.01em;
}
.site-nav a:hover { color: var(--brand); background: var(--brand-light); }
.site-nav a.active { color: var(--brand); background: var(--brand-light); }
[data-theme="dark"] .site-nav a:hover,
[data-theme="dark"] .site-nav a.active { background: rgba(0,102,255,0.12); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg2); border: 1px solid var(--border); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  transition: all var(--transition); color: var(--text);
}
.theme-toggle:hover { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,102,255,0.1); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: 100px; font-family: var(--font-display);
  font-weight: 600; font-size: 0.9rem; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none; letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #7B2FFF 100%);
  color: #fff; box-shadow: 0 4px 20px rgba(0,102,255,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,102,255,0.45); color: #fff;
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
[data-theme="dark"] .btn-outline:hover { background: rgba(0,102,255,0.1); }
.btn-ghost { background: transparent; color: var(--brand); padding: 8px 16px; }
.btn-ghost:hover { background: var(--brand-light); }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #EF4444 100%);
  color: #fff; box-shadow: 0 4px 20px rgba(245,158,11,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,158,11,0.45); color: #fff; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: var(--header-h);
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 20%, rgba(0,102,255,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(123,47,255,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(245,158,11,0.04) 0%, transparent 50%);
}
.hero-dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, var(--border2) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
  opacity: 0.6;
}
[data-theme="dark"] .hero-dots { opacity: 0.3; }
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-light); border: 1px solid rgba(0,102,255,0.2);
  color: var(--brand); padding: 6px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; font-family: var(--font-display);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 28px;
}
[data-theme="dark"] .hero-badge { background: rgba(0,102,255,0.12); }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 { margin-bottom: 24px; max-width: 820px; }
.hero p { font-size: 1.15rem; color: var(--text2); max-width: 580px; margin-bottom: 44px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-visual {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 520px; opacity: 0.12; pointer-events: none;
  font-size: 280px; line-height: 1; text-align: center;
  filter: blur(2px);
}
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat-item { }
.stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
  color: var(--text); letter-spacing: -0.03em; line-height: 1;
}
.stat-num span { color: var(--brand); }
.stat-label { font-size: 0.82rem; color: var(--text3); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* ---- Trusted By / Logos ---- */
.trusted-section { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); }
.trusted-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); text-align: center; margin-bottom: 28px; }
.logos-row { display: flex; gap: 48px; justify-content: center; align-items: center; flex-wrap: wrap; opacity: 0.5; filter: grayscale(1); }
.logo-item { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--text2); }

/* ---- Section Header ---- */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand);
  background: var(--brand-light); padding: 5px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
[data-theme="dark"] .section-label { background: rgba(0,102,255,0.12); }
.section-header { max-width: 640px; }
.section-header.center { text-align: center; margin: 0 auto; max-width: 640px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
@media(max-width:1024px){ .services-grid{ grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .services-grid{ grid-template-columns: 1fr; } }

.service-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all var(--transition); position: relative;
  text-decoration: none; display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(135deg, rgba(0,102,255,0.04), rgba(123,47,255,0.04));
  transition: opacity var(--transition);
}
.service-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--brand-light); display: flex; align-items: center; justify-content: center;
  font-size: 24px; transition: transform var(--transition);
}
[data-theme="dark"] .service-icon { background: rgba(0,102,255,0.12); }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-size: 1rem; color: var(--text); line-height: 1.4; }
.service-card p { font-size: 0.875rem; color: var(--text3); max-width: none; flex-grow: 1; }
.service-arrow {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; color: var(--brand);
  font-family: var(--font-display); letter-spacing: 0.02em;
}
.service-arrow svg { transition: transform var(--transition); }
.service-card:hover .service-arrow svg { transform: translateX(4px); }

/* ---- Why Choose / Features ---- */
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 56px; }
@media(max-width:768px){ .features-grid{ grid-template-columns:1fr; } }
.feature-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: all var(--transition); display: flex; gap: 20px;
}
.feature-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius-md); flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand) 0%, #7B2FFF 100%);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  box-shadow: 0 4px 16px rgba(0,102,255,0.25);
}
.feature-body h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature-body p { font-size: 0.88rem; max-width: none; }

/* ---- Process Steps ---- */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 56px; position: relative; }
@media(max-width:900px){ .process-grid{ grid-template-columns: repeat(2,1fr); gap: 20px; } }
@media(max-width:500px){ .process-grid{ grid-template-columns: 1fr; } }
.process-grid::before {
  content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, #7B2FFF 100%);
  opacity: 0.2; z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-circle {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--brand) 0%, #7B2FFF 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(0,102,255,0.3);
}
.process-step h4 { margin-bottom: 8px; font-size: 0.95rem; }
.process-step p { font-size: 0.83rem; max-width: none; }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--brand) 0%, #7B2FFF 100%);
  border-radius: var(--radius); padding: 80px 60px; margin: 0 24px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: #fff; position: relative; z-index: 1; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 40px; position: relative; z-index: 1; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: #fff; color: var(--brand); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); color: var(--brand); }
.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* ---- About Page ---- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media(max-width:900px){ .about-intro{ grid-template-columns:1fr; gap:48px; } }
.about-visual-wrap {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--brand-light) 0%, rgba(123,47,255,0.08) 100%);
  padding: 48px; display: flex; align-items: center; justify-content: center; min-height: 400px;
  border: 1.5px solid var(--border);
}
.about-icon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; width: 100%; }
.about-icon-card {
  background: #fff; border-radius: var(--radius-md); padding: 20px;
  text-align: center; font-size: 28px; box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
[data-theme="dark"] .about-icon-card { background: var(--bg3); }
.about-icon-card:hover { transform: translateY(-4px); }
.about-icon-card span { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text3); margin-top: 8px; font-family: var(--font-display); }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 56px; }
@media(max-width:600px){ .values-grid{ grid-template-columns:1fr; } }
.value-card {
  background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: all var(--transition);
}
.value-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.value-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--brand); opacity: 0.15; line-height: 1; margin-bottom: 8px; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; max-width: none; }

/* ---- Service Detail ---- */
.service-hero-section {
  background: var(--bg2); padding: 120px 0 72px; border-bottom: 1px solid var(--border);
}
.service-icon-lg {
  width: 72px; height: 72px; border-radius: var(--radius); background: var(--brand-light);
  display: flex; align-items: center; justify-content: center; font-size: 34px;
  margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .service-icon-lg { background: rgba(0,102,255,0.12); }
.service-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 56px; padding: 72px 0; }
@media(max-width:1024px){ .service-detail-layout{ grid-template-columns:1fr; } }
.service-content-area h2 { margin-bottom: 20px; }
.service-content-area p { max-width: none; margin-bottom: 16px; }
.content-section { margin-bottom: 56px; }
.feature-list { margin-top: 20px; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(0,102,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
  color: var(--brand); font-size: 12px; font-weight: 700;
}
.feature-list li span { font-size: 0.9rem; color: var(--text2); }
.process-list { counter-reset: step; margin-top: 20px; }
.process-list-item { display: flex; gap: 20px; margin-bottom: 28px; }
.process-list-num {
  counter-increment: step;
  min-width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #7B2FFF);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: #fff;
  box-shadow: 0 4px 16px rgba(0,102,255,0.25); flex-shrink: 0;
}
.process-list-num::after { content: counter(step); }
.process-list-body h4 { margin-bottom: 6px; }
.process-list-body p { font-size: 0.88rem; max-width: none; }
.use-case-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 20px; }
@media(max-width:600px){ .use-case-grid{ grid-template-columns:1fr; } }
.use-case-item {
  background: var(--bg2); border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 16px 20px; font-size: 0.88rem; color: var(--text2);
  display: flex; align-items: center; gap: 10px;
}
.use-case-item::before { content: '→'; color: var(--brand); font-weight: 700; }
.faq-list { margin-top: 20px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 0.92rem;
  display: flex; justify-content: space-between; align-items: center; color: var(--text);
  font-family: var(--font-display); background: var(--card); transition: background var(--transition);
  user-select: none;
}
.faq-q:hover { background: var(--bg2); }
.faq-q .icon { transition: transform 0.3s; color: var(--brand); font-size: 18px; font-weight: 300; }
.faq-item.open .faq-q { background: var(--brand-light); color: var(--brand); }
[data-theme="dark"] .faq-item.open .faq-q { background: rgba(0,102,255,0.1); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: var(--card); }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 16px 22px 20px; font-size: 0.88rem; color: var(--text2); }
.faq-a-inner p { max-width: none; font-size: 0.88rem; }

/* ---- Sidebar ---- */
.service-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-cta {
  background: linear-gradient(135deg, var(--brand) 0%, #7B2FFF 100%);
  border-radius: var(--radius); padding: 32px;
}
.sidebar-cta h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 0.88rem; max-width: none; margin-bottom: 20px; }
.sidebar-box {
  background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px;
}
.sidebar-box h4 { font-size: 0.9rem; margin-bottom: 16px; }
.sidebar-service-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 0;
  border-bottom: 1px solid var(--border); color: var(--text2); font-size: 0.85rem;
  text-decoration: none; transition: color var(--transition);
}
.sidebar-service-link:last-child { border-bottom: none; }
.sidebar-service-link:hover { color: var(--brand); }
.sidebar-service-link .svc-emoji { font-size: 16px; }

/* ---- Contact Page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; }
@media(max-width:1024px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-form-card {
  background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 44px;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start; transition: all var(--transition);
}
.info-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.info-icon {
  width: 46px; height: 46px; border-radius: var(--radius-md); flex-shrink: 0;
  background: var(--brand-light); display: flex; align-items: center; justify-content: center; font-size: 20px;
}
[data-theme="dark"] .info-icon { background: rgba(0,102,255,0.12); }
.info-card h4 { font-size: 0.85rem; margin-bottom: 4px; }
.info-card a, .info-card p { font-size: 0.88rem; color: var(--text2); max-width: none; }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.83rem;
  color: var(--text); font-family: var(--font-display); letter-spacing: 0.02em;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px;
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); color: var(--text);
  font-family: var(--font-body); font-size: 0.92rem;
  transition: all var(--transition); outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--brand); background: var(--bg);
  box-shadow: 0 0 0 4px rgba(0,102,255,0.08);
}
.form-textarea { min-height: 140px; resize: vertical; }
.file-drop {
  border: 2px dashed var(--border2); border-radius: var(--radius-md); padding: 28px;
  text-align: center; cursor: pointer; transition: all var(--transition);
  background: var(--bg2);
}
.file-drop:hover { border-color: var(--brand); background: var(--brand-light); }
[data-theme="dark"] .file-drop:hover { background: rgba(0,102,255,0.06); }
.file-drop input { display: none; }
.file-drop-icon { font-size: 28px; margin-bottom: 8px; }
.file-drop-text { font-size: 0.85rem; color: var(--text3); }

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text3); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text3); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { color: var(--border2); }

/* ---- Page Hero ---- */
.page-hero { background: var(--bg2); padding: 120px 0 72px; border-bottom: 1px solid var(--border); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; max-width: 560px; }

/* ---- Footer ---- */
.site-footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
[data-theme="dark"] .site-footer { background: #050810; }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 64px; }
@media(max-width:1024px){ .footer-grid{ grid-template-columns:1fr 1fr; gap:40px; } }
@media(max-width:600px){ .footer-grid{ grid-template-columns:1fr; gap:32px; } }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo span { color: #60A5FA; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); max-width: 280px; line-height: 1.8; }
.footer-col h5 {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.6); font-size: 0.88rem;
  margin-bottom: 10px; text-decoration: none; transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 15px; text-decoration: none;
  transition: all var(--transition);
}
.social-link:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 12px;
}

/* ---- Mobile Nav ---- */
.hamburger { display: none; width: 40px; height: 40px; background: var(--bg2); border: 1.5px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 999;
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 16px; border-radius: var(--radius-sm); color: var(--text2); font-family: var(--font-display); font-weight: 500; text-decoration: none; transition: all var(--transition); }
.mobile-nav a:hover { background: var(--brand-light); color: var(--brand); }
[data-theme="dark"] .mobile-nav a:hover { background: rgba(0,102,255,0.1); }

/* ---- Alert ---- */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 0.88rem; }
.alert-success { background: rgba(16,185,129,0.08); border: 1.5px solid rgba(16,185,129,0.25); color: var(--success); }
.alert-error { background: rgba(239,68,68,0.08); border: 1.5px solid rgba(239,68,68,0.25); color: var(--error); }

/* ---- Tags ---- */
.tag { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; font-family: var(--font-display); }
.tag-blue { background: var(--brand-light); color: var(--brand); }
.tag-gold { background: var(--gold-light); color: #B45309; }
[data-theme="dark"] .tag-gold { background: rgba(245,158,11,0.12); color: var(--gold); }

/* ---- Animations ---- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ---- Content Pages ---- */
.content-page { max-width: 800px; }
.content-page h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.content-page p { margin-bottom: 16px; }
.content-page a { color: var(--brand); }

/* ---- Divider ---- */
.divider { height: 1px; background: var(--border); margin: 48px 0; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 0; }
  .cta-section { padding: 56px 32px; margin: 0 16px; }
  .hero p { font-size: 1rem; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .container-lg { padding: 0 20px; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-brand { color: var(--brand); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text3); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.w-full { width: 100%; }
