
/* ============================
   NEW LOGO STYLE
   ============================ */
.logo-brand {
  display: flex !important;
  align-items: center;
  gap: 0px;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

.logo-box {
  border: 2.5px solid #2563eb;
  padding: 2px 4px; margin-right: -2px;
  color: #111827;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}

.logo-text {
  font-weight: 500;
  color: #111827;
}

/* ============================
   NEXTTOOL.in — GLOBAL STYLES
   Human-Touch Light Theme
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f7f8fb;
  --bg-warm: #faf9f7;
  --bg-card: #ffffff;
  --bg-elevated: #f0f1f5;

  --accent-primary: #4f46e5;
  --accent-hover: #4338ca;
  --accent-light: rgba(79, 70, 229, 0.07);
  --accent-secondary: #0ea5e9;
  --accent-tertiary: #8b5cf6;
  --accent-green: #10b981;
  --accent-rose: #f43f5e;
  --accent-amber: #f59e0b;

  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --text-light: #d1d5db;

  --border: #e5e7eb;
  --border-hover: #d1d5db;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

/* ============================
   RESET & BASE
   ============================ */

*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: rgba(79, 70, 229, 0.15);
  color: var(--text-primary);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* ============================
   UTILITIES
   ============================ */

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-primary);
  margin-bottom: 12px;
}

.section-heading {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
}

.section-subtitle.centered { margin: 0 auto; }

/* ============================
   NAVIGATION
   ============================ */

.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.nav-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
}

.nav-links {
  display: flex; gap: 2px; align-items: center;
}

.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.nav-link.highlight {
  color: var(--accent-primary);
  background: var(--accent-light);
  font-weight: 600;
}

.nav-link.highlight:hover {
  background: rgba(79, 70, 229, 0.12);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px;
  width: max-content;
  min-width: 200px;
  opacity: 0; visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-lg);
}

.nav-item:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}

.dropdown-item:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.dropdown-item i { width: 16px; text-align: center; }

.nav-actions { display: flex; gap: 10px; align-items: center; }

/* Mobile hamburger */
.mobile-toggle {
  display: none;
  padding: 8px;
  font-size: 1.2rem;
  color: var(--text-primary);
}

/* ============================
   BUTTONS
   ============================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.25);
}

.btn-secondary {
  background: white;
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--border-hover);
}

.btn-ghost {
  color: var(--text-secondary);
  padding: 8px 14px;
}
.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.btn-large {
  padding: 15px 32px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* ============================
   TRUST BADGE
   ============================ */

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 5px 14px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #059669;
}

/* ============================
   HERO (Full-Screen, Clean, Human)
   ============================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  background: linear-gradient(175deg, #f8f7ff 0%, #ffffff 40%, var(--bg-warm) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle dot pattern for texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 540px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--accent-light);
  border: 1px solid rgba(79, 70, 229, 0.1);
  border-radius: 100px;
  margin-bottom: 28px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-primary);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-title .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px;
}

.hero-trust {
  display: flex; align-items: center; gap: 20px;
  font-size: 0.82rem; color: var(--text-muted);
}

.hero-trust-item {
  display: flex; align-items: center; gap: 2px;
}

.hero-trust-item i { color: var(--accent-green); }

/* Hero right side - visual mockup */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-mockup {
  width: 100%;
  max-width: 480px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: perspective(800px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.5s;
}

.hero-mockup:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.mockup-toolbar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.mockup-body {
  padding: 24px;
  min-height: 300px;
}

.mockup-tool-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.mockup-tool-item {
  padding: 16px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.mockup-tool-item:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--accent-light);
}

.mockup-tool-item i {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

/* Floating badges around mockup */
.float-badge {
  position: absolute;
  padding: 10px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-badge.badge-1 { top: 10%; left: -20px; animation-delay: 0s; }
.float-badge.badge-2 { bottom: 15%; right: -30px; animation-delay: 1.5s; }
.float-badge.badge-3 { top: 50%; left: -40px; animation-delay: 3s; }

/* ============================
   TOOL CARDS
   ============================ */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: left;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.tool-card:hover .card-icon { transform: scale(1.08); }

.icon-indigo { background: rgba(79, 70, 229, 0.07); color: #4f46e5; }
.icon-red { background: rgba(239, 68, 68, 0.07); color: #ef4444; }
.icon-violet { background: rgba(139, 92, 246, 0.07); color: #8b5cf6; }
.icon-amber { background: rgba(245, 158, 11, 0.07); color: #f59e0b; }
.icon-sky { background: rgba(14, 165, 233, 0.07); color: #0ea5e9; }
.icon-rose { background: rgba(244, 63, 94, 0.07); color: #f43f5e; }
.icon-green { background: rgba(16, 185, 129, 0.07); color: #10b981; }

.tool-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.tool-card:hover .card-link { gap: 8px; }

.link-indigo { color: #4f46e5; }
.link-red { color: #ef4444; }
.link-violet { color: #8b5cf6; }
.link-amber { color: #f59e0b; }
.link-sky { color: #0ea5e9; }
.link-rose { color: #f43f5e; }
.link-green { color: #10b981; }

/* ============================
   POPULAR TOOLS STRIP
   ============================ */

.tools-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.2s;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.strip-item:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.strip-item i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* ============================
   HOW IT WORKS
   ============================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

/* Connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
  opacity: 0.15;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  background: white;
  border: 2px solid var(--border);
  color: var(--accent-primary);
  transition: all 0.3s;
}

.step-card:hover .step-icon {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 6px var(--accent-light);
}

.step-number {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 2.5px;
  margin-bottom: 8px;
}

/* ============================
   FEATURES
   ============================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.feature-item {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.25s;
}

.feature-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 14px;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================
   CTA BANNER
   ============================ */

.cta-banner {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #0ea5e9 100%);
  border-radius: var(--radius-2xl);
  padding: 56px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; right: -15%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 24px;
  font-size: 1rem;
  position: relative;
}

.cta-banner .btn {
  background: white;
  color: var(--accent-primary);
  font-weight: 700;
  position: relative;
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ============================
   FOOTER
   ============================ */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================
   COOKIE CONSENT
   ============================ */

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex: 1;
}

.cookie-banner p a {
  color: var(--accent-primary);
  font-weight: 600;
}

/* ============================
   CONTENT PAGES (About, Privacy, etc.)
   ============================ */

.page-header {
  padding: 120px 24px 48px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.page-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.page-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.page-content p, .page-content li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.page-content ul {
  padding-left: 20px;
  list-style: disc;
}

.page-content a {
  color: var(--accent-primary);
  font-weight: 500;
}

/* ============================
   TOOL PAGE LAYOUT
   ============================ */

.tool-hero {
  padding: 120px 24px 56px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.tool-icon-large {
  width: 72px; height: 72px;
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.tool-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}

.tool-hero > p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 20px;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Drop Zone */
.drop-zone {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border: 2px dashed var(--border);
  border-radius: var(--radius-2xl);
  padding: 52px 36px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}

.drop-zone:hover, .drop-zone.drag-over {
  border-color: var(--accent-primary);
  background: rgba(79, 70, 229, 0.02);
  box-shadow: var(--shadow-md);
}

.drop-zone-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem; color: var(--text-muted);
}

.drop-zone h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 6px;
}

.drop-zone p {
  font-size: 0.85rem; color: var(--text-muted);
}

/* ============================
   CONTACT FORM
   ============================ */

.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: white;
  transition: all 0.2s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

/* ============================
   ANIMATIONS
   ============================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .hero-title { font-size: 3rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-heading { font-size: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .navbar { padding: 0 16px; }
  .hero-title { font-size: 2.3rem; letter-spacing: -0.8px; }
  .hero { padding: 100px 16px 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-banner { flex-direction: column; text-align: center; }
}

/* Modern Highlight Font */
.modern-highlight {
  font-family: var(--font-sans);
  font-style: normal;
  position: relative;
  display: inline-block;
  transform: rotate(-2deg);
}

/* Background Animation Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}
