/* ═══════════════════════════════════════════════════ */
/* Domania.se — Base Styles                          */
/* ═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #f906b8;
  --primary-rgb: 249,6,184;
  --secondary: #64748b;
  --secondary-rgb: 100,116,139;
  --accent: #000000;
  --accent-rgb: 0,0,0;
  --bg: #ffffff;
  --text: #1f2937;
  --text-muted: #64748b;
  --surface: rgba(255,255,255,0.8);
  --border: rgba(0,0,0,0.06);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 50px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 32px 64px rgba(0,0,0,0.16);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; line-height: 1.7; color: var(--text); background: var(--bg); overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
::selection { background: var(--primary); color: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem,3vw,2rem); }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 clamp(1rem,3vw,2rem); }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 clamp(1rem,3vw,2rem); }

/* ─── Header — Glassmorphism Sticky ─── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 0; transition: var(--transition); }
.site-header.scrolled { background: rgba(255,255,255,0.95); box-shadow: var(--shadow-sm); padding: 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo { font-size: 1.4rem; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-decoration: none; letter-spacing: -0.02em; display: flex; align-items: center; gap: 0.5rem; }
.logo img { max-height: 48px; width: auto; display: block; object-fit: contain; }
.site-header img { max-height: 48px; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: var(--transition); position: relative; padding: 0.25rem 0; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transition: var(--transition); border-radius: 1px; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Hamburger (CSS-only) */
.menu-toggle-input { display: none; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 0.5rem; z-index: 1001; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); transform-origin: center; }

/* Body offset for fixed header */
body { padding-top: 72px; }

/* ─── Typography ─── */
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.08; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
p { line-height: 1.7; }
.text-gradient { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ─── Buttons ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 2rem; border-radius: var(--radius-full); font-weight: 600; font-size: 1rem; text-decoration: none; transition: var(--transition); cursor: pointer; border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(var(--accent-rgb),0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(var(--accent-rgb),0.45); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-secondary { background: rgba(var(--primary-rgb),0.1); color: var(--primary); }
.btn-secondary:hover { background: rgba(var(--primary-rgb),0.2); transform: translateY(-2px); }
.btn-dark { background: var(--text); color: var(--bg); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* ─── Sections ─── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-title { margin-bottom: 0.75rem; }
.section-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); background: rgba(var(--primary-rgb),0.08); padding: 0.4rem 1rem; border-radius: var(--radius-full); margin-bottom: 1rem; }
.section-alt { background: #f8fafc; }
.section-dark { background: linear-gradient(135deg, #0f172a, #1e293b); color: #fff; }

/* ─── Grids ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.grid-auto-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }
.grid-auto-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-auto-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }

/* ─── Cards ─── */
.card { background: var(--surface); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius); padding: 2rem; transition: var(--transition); box-shadow: var(--shadow-sm); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(var(--primary-rgb),0.1), rgba(var(--secondary-rgb),0.1)); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }
.card-elevated { box-shadow: var(--shadow); border: none; }
.card-glass { background: rgba(255,255,255,0.6); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.2); }
.card-bordered { border: 2px solid #e2e8f0; background: #fff; backdrop-filter: none; }
.card-centered { text-align: center; }
.card-centered .card-icon { margin: 0 auto 1.25rem; }

/* ─── Hero ─── */
.hero { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; padding: clamp(6rem,14vw,10rem) 0 clamp(4rem,10vw,8rem); text-align: center; position: relative; overflow: hidden; min-height: 90vh; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.12) 0%, transparent 60%); }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to top, var(--bg), transparent); }
.hero .container { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 1.25rem; }
.hero p { font-size: clamp(1.05rem, 2vw, 1.3rem); opacity: 0.92; max-width: 640px; margin: 0 auto 2.5rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Stats ─── */
.stats-section { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; padding: clamp(3rem, 6vw, 5rem) 0; }
.stat { text-align: center; padding: 1.5rem; }
.counter { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; display: block; letter-spacing: -0.02em; }
.stat-suffix { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; }
.stat-label { display: block; font-size: 0.95rem; opacity: 0.85; margin-top: 0.25rem; }

/* ─── CTA ─── */
.cta-section { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; text-align: center; padding: clamp(4rem, 8vw, 7rem) 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 50%); }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 0.75rem; }
.cta-section p { opacity: 0.9; font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }

/* ─── Testimonials ─── */
.testimonial { background: #fff; border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); position: relative; }
.testimonial::before { content: '"'; position: absolute; top: 1.5rem; left: 2rem; font-size: 4rem; color: rgba(var(--primary-rgb),0.1); font-family: Georgia, serif; line-height: 1; }
.testimonial p { font-size: 1.05rem; color: #475569; margin-bottom: 1.25rem; padding-top: 1rem; font-style: italic; }
.testimonial-author { font-weight: 700; color: var(--text); }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }
.testimonial-stars { color: #f59e0b; margin-bottom: 0.75rem; letter-spacing: 2px; }

/* ─── Contact Form ─── */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.95rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.875rem 1rem; border: 2px solid #e2e8f0; border-radius: 12px; font-family: inherit; font-size: 1rem; transition: var(--transition); background: #fff; color: var(--text); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(var(--primary-rgb),0.08); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── Feature List ─── */
.feature-list { list-style: none; padding: 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0; }
.feature-list li svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ─── Pricing ─── */
.pricing-card { background: #fff; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); text-align: center; transition: var(--transition); border: 2px solid transparent; }
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.popular { border-color: var(--primary); position: relative; }
.pricing-card.popular::before { content: 'Populärast'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 0.3rem 1.2rem; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 700; }
.pricing-price { font-size: 3rem; font-weight: 900; color: var(--text); margin: 1rem 0 0.5rem; letter-spacing: -0.03em; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-features { text-align: left; margin: 1.5rem 0; }
.pricing-features li { padding: 0.5rem 0; display: flex; align-items: center; gap: 0.5rem; color: #475569; }
.pricing-features li svg { color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; }

/* ─── FAQ / Accordion ─── */
.faq-item { border-bottom: 1px solid #e2e8f0; }
.faq-item summary { padding: 1.25rem 0; font-weight: 600; font-size: 1.05rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--primary); font-weight: 300; transition: var(--transition); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 1.25rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Footer ─── */
.site-footer { background: linear-gradient(180deg, #0f172a, #020617); color: #fff; padding: clamp(3rem,6vw,5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.site-footer h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
.site-footer p, .site-footer li { color: #94a3b8; font-size: 0.9rem; line-height: 2; }
.site-footer a { color: #94a3b8; text-decoration: none; transition: var(--transition); }
.site-footer a:hover { color: #fff; }
.footer-brand p { margin-top: 0.75rem; max-width: 280px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; color: #64748b; font-size: 0.85rem; flex-wrap: wrap; gap: 1rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-socials a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; }

/* ─── Scroll Animations ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.8s ease, transform 0.8s ease; }
.revealed, .reveal-left.revealed, .reveal-right.revealed, .reveal-scale.revealed { opacity: 1; transform: translate(0) scale(1); }

/* ─── Utilities ─── */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* ─── GLOBAL SVG SIZING — Förhindrar att ikoner expanderar ─── */
/* Alla SVG utan explicit klass begränsas till 24x24 */
svg:not(.logo-svg):not(.hero-illustration) { max-width: 100%; height: auto; }
.card svg, .feature-numbered svg, .contact-info-card svg, .value-card svg,
.pricing-features svg, .feature-list svg, .icon-circle svg,
.card-icon svg, .testimonial svg, .stat svg, .menu-item-badge svg,
.chef-special svg, .hours-card svg, .footer-socials svg,
section svg:not(.hero-illustration) {
  width: 24px; height: 24px; flex-shrink: 0;
}
/* Icon circles — lite större */
.icon-circle svg { width: 28px; height: 28px; }
.card-icon svg { width: 26px; height: 26px; }
/* Footer-ikoner */
.footer-socials svg { width: 18px; height: 18px; }
/* Pricing check-ikoner */
.pricing-features li svg { width: 18px; height: 18px; }
/* Feature list check-ikoner */
.feature-list li svg { width: 22px; height: 22px; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: 0; right: -100%; width: min(300px, 85vw); height: 100vh; height: 100dvh; background: #fff; flex-direction: column; padding: 6rem 2rem 2rem; gap: 1.5rem; box-shadow: -10px 0 30px rgba(0,0,0,0.15); transition: right 0.4s cubic-bezier(0.4,0,0.2,1); z-index: 999; }
  .menu-toggle-input:checked ~ .nav-links { right: 0; }
  .menu-toggle-input:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle-input:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  .menu-toggle-input:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero { min-height: 75vh; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-auto-2, .grid-auto-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  body { padding-top: 64px; }
  .header-inner { height: 64px; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; }
  .hero { min-height: 70vh; }
}


/* ═══ Corporate Template — Trust & Structure ═══ */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700;800;900&display=swap');

body, h1, h2, h3, h4 { font-family: 'Source Sans 3', 'Inter', system-ui, sans-serif; }

/* Hero — solid bakgrund med diagonal cut */
.corp-hero { min-height: 80vh; display: flex; align-items: center; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: #fff; position: relative; overflow: hidden; }
.corp-hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; background: var(--bg); clip-path: polygon(0 100%, 100% 100%, 100% 0); }
.corp-hero h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; margin-bottom: 1.25rem; }
.corp-hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 600px; }
.corp-hero .hero-buttons { margin-top: 2rem; }

/* Trust bar — logotyp-rad */
.corp-trust-bar { padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.corp-trust-bar p { text-align: center; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 1.5rem; }
.corp-trust-logos { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.corp-trust-logo { width: 100px; height: 40px; background: rgba(var(--primary-rgb),0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.75rem; font-weight: 600; }

/* Feature boxes — ikoner med bakgrund */
.corp-feature { padding: 2rem; border: 1px solid var(--border); border-radius: 12px; transition: var(--transition); background: #fff; }
.corp-feature:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.corp-feature-icon { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.corp-feature-icon svg { width: 26px; height: 26px; color: #fff; stroke: #fff; }
.corp-feature h3 { margin-bottom: 0.5rem; }
.corp-feature p { color: var(--text-muted); font-size: 0.95rem; }

/* Checkmark-lista */
.corp-checklist { list-style: none; padding: 0; }
.corp-checklist li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.5rem 0; }
.corp-checklist li::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(var(--primary-rgb),0.1); color: var(--primary); font-size: 0.75rem; font-weight: 800; flex-shrink: 0; margin-top: 2px; }

/* Stats bar */
.corp-stats { display: grid; grid-template-columns: repeat(4, 1fr); background: linear-gradient(135deg, #0f172a, #1e293b); border-radius: 16px; padding: 3rem 2rem; color: #fff; text-align: center; }
.corp-stat .counter { font-size: 2.5rem; font-weight: 800; display: block; }
.corp-stat .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; display: block; }

/* Testimonial — card med ikon */
.corp-testimonial { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.corp-testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; }
.corp-testimonial p { font-size: 1rem; line-height: 1.7; margin-bottom: 1.25rem; color: var(--text); }
.corp-testimonial-footer { display: flex; align-items: center; gap: 0.75rem; }
.corp-testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; }

/* Contact form — strukturerad */
.corp-form input, .corp-form textarea, .corp-form select { border: 1px solid var(--border); border-radius: 10px; padding: 0.875rem 1.125rem; background: #fff; font-family: 'Source Sans 3', sans-serif; font-size: 0.95rem; width: 100%; transition: var(--transition); }
.corp-form input:focus, .corp-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb),0.1); }
.corp-form label { font-size: 0.875rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 0.375rem; }
.corp-form .form-group { margin-bottom: 1.25rem; }
.corp-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* Contact info icons */
.corp-info-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; border-radius: 10px; background: #f8fafc; margin-bottom: 0.75rem; }
.corp-info-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

/* CTA — dark bg */
.corp-cta { background: linear-gradient(135deg, #0f172a, #1e293b); color: #fff; text-align: center; padding: 5rem 0; border-radius: 0; }
.corp-cta h2 { color: #fff; margin-bottom: 0.75rem; }
.corp-cta p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* Map */
.corp-map { width: 100%; height: 300px; border-radius: 12px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; color: var(--text-muted); }

@media (max-width: 768px) {
  .corp-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .corp-form .form-row { grid-template-columns: 1fr; }
  .corp-trust-logos { gap: 1.5rem; }
}
