/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #0a0b0f;
  --dark-2:     #111218;
  --dark-3:     #1a1c26;
  --accent:     #6c63ff;
  --accent-2:   #a78bfa;
  --accent-3:   #38bdf8;
  --light:      #f8f9fc;
  --light-2:    #eef0f7;
  --mid:        #6b7280;
  --text:       #1e2030;
  --text-light: #4b5263;
  --white:      #ffffff;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.14);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--light); color: var(--text); line-height: 1.6; overflow-x: hidden; }
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0; transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10,11,15,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo { font-size: 1.35rem; font-weight: 800; letter-spacing: -.5px; }
.logo-west  { color: var(--white); }
.logo-style { color: var(--accent-2); }
.logo-kft   { color: var(--mid); font-weight: 400; font-size: .85em; margin-left: 3px; }

.nav-links { display: flex; gap: 28px; }
.nav-links a { color: rgba(255,255,255,.65); font-size: .92rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover, .nav-links a.nav-active { color: var(--white); }
.nav-links a.nav-active { font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.btn-sm { padding: 8px 18px; font-size: .85rem; border-radius: var(--radius-sm); }

.lang-toggle {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 5px 14px; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600; transition: background var(--transition);
}
.lang-toggle:hover { background: rgba(255,255,255,.18); }
.lang-hu, .lang-en { color: rgba(255,255,255,.4); transition: color var(--transition); }
.lang-hu.active, .lang-en.active { color: var(--white); }
.lang-sep { color: rgba(255,255,255,.2); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--transition), opacity 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); }

/* ===== HERO ===== */
.hero { min-height: 100vh; background: var(--dark); display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 0 80px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .45; }
.orb1 { width: 520px; height: 520px; background: radial-gradient(circle, #6c63ff 0%, transparent 70%); top: -180px; left: -120px; }
.orb2 { width: 420px; height: 420px; background: radial-gradient(circle, #38bdf8 0%, transparent 70%); bottom: -80px; right: -100px; opacity: .3; }
.orb3 { width: 300px; height: 300px; background: radial-gradient(circle, #a78bfa 0%, transparent 70%); top: 40%; left: 55%; opacity: .2; }

.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(108,99,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(108,99,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-content { position: relative; z-index: 2; max-width: 760px; animation: heroEnter .9s cubic-bezier(.4,0,.2,1) both; }

@keyframes heroEnter { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,99,255,.18); border: 1px solid rgba(108,99,255,.35);
  color: var(--accent-2); padding: 6px 16px; border-radius: 20px;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before { content: ''; display: block; width: 6px; height: 6px; background: var(--accent-2); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }

@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.7); } }

.hero-title { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.12; color: var(--white); margin-bottom: 24px; letter-spacing: -.02em; }
.gradient-text { background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-3) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.62); max-width: 580px; margin-bottom: 40px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-size: .95rem; font-weight: 600; cursor: pointer; border: none; transition: all var(--transition); }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #7c74ff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(108,99,255,.4); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); color: var(--white); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== HERO STATS ===== */
.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.4); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.1); }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--dark-2); border-bottom: 1px solid rgba(255,255,255,.06); padding: 20px 0; }
.trust-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); white-space: nowrap; }
.trust-items { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.55); font-size: .85rem; font-weight: 500; }
.trust-item svg { width: 16px; height: 16px; color: #4ade80; flex-shrink: 0; }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-tag { display: inline-block; background: rgba(108,99,255,.1); color: var(--accent); padding: 5px 14px; border-radius: 20px; font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 16px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--text); margin-bottom: 14px; letter-spacing: -.02em; line-height: 1.2; }
.section-header p { color: var(--text-light); font-size: 1.02rem; line-height: 1.7; }

/* ===== INNOVATION ===== */
.innovation { padding: 100px 0; background: var(--light); }
.inno-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.inno-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; line-height: 1.2; }
.inno-header p { color: var(--text-light); font-size: 1rem; line-height: 1.7; }
.inno-header .section-tag { margin-bottom: 16px; }

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

.inno-card {
  background: var(--white); border: 1px solid #e8eaf0; border-radius: var(--radius);
  padding: 36px 28px; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.inno-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(108,99,255,.2); }
.inno-featured { background: linear-gradient(145deg, #0f0d1f, #1a1535); border-color: rgba(108,99,255,.4); color: var(--white); }
.inno-featured h3 { color: var(--white); }
.inno-featured p { color: rgba(255,255,255,.6); }
.inno-featured .inno-icon { background: rgba(167,139,250,.15); color: var(--accent-2); }

.inno-icon { width: 52px; height: 52px; background: rgba(108,99,255,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 20px; }
.inno-icon svg { width: 28px; height: 28px; }
.inno-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
.inno-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* ===== SERVICES TEASER ===== */
.services-teaser { padding: 100px 0; background: var(--light-2); }

.st-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }

.st-card {
  background: var(--white); border: 1px solid #e8eaf0; border-radius: var(--radius);
  padding: 36px 28px; position: relative; display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.st-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(108,99,255,.2); }
.st-featured { background: linear-gradient(160deg, #0f0d1f 0%, #1a1535 100%); border-color: rgba(108,99,255,.4); color: var(--white); }
.st-featured p { color: rgba(255,255,255,.6); }
.st-featured .st-icon { background: rgba(167,139,250,.15); color: var(--accent-2); }
.st-featured .st-num { color: var(--accent-2); }
.st-featured .st-link { color: var(--accent-2); }

.st-num { font-size: .7rem; font-weight: 700; letter-spacing: .12em; color: var(--mid); }
.st-icon { width: 50px; height: 50px; background: rgba(108,99,255,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.st-icon svg { width: 26px; height: 26px; }
.st-card h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; }
.st-card p { font-size: .92rem; color: var(--text-light); line-height: 1.65; flex: 1; }
.st-link { font-size: .88rem; font-weight: 600; color: var(--accent); }
.st-link:hover { opacity: .75; }

.st-cta { text-align: center; }

/* ===== COMPANY ===== */
.company { padding: 100px 0; background: var(--light); }
.company-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.company-text .section-tag { margin-bottom: 16px; }
.company-text h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 20px; line-height: 1.2; }
.company-text p { color: var(--text-light); font-size: .97rem; line-height: 1.75; margin-bottom: 16px; }

.company-values { display: flex; flex-direction: column; gap: 20px; margin: 32px 0 36px; }
.cv-item { display: flex; align-items: flex-start; gap: 16px; }
.cv-num { font-size: .72rem; font-weight: 800; color: var(--accent); letter-spacing: .08em; padding-top: 3px; flex-shrink: 0; min-width: 24px; }
.cv-item strong { display: block; font-size: .95rem; font-weight: 700; margin-bottom: 3px; }
.cv-item span { font-size: .87rem; color: var(--text-light); line-height: 1.5; }

/* Company graphic */
.company-visual { display: flex; align-items: center; justify-content: center; }
.cv-graphic { position: relative; width: 340px; height: 340px; }
.cvg-ring { position: absolute; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); border: 1.5px dashed rgba(108,99,255,.2); }
.r1 { width: 340px; height: 340px; animation: rotateSlow 28s linear infinite; }
.r2 { width: 245px; height: 245px; animation: rotateSlow 20s linear infinite reverse; border-color: rgba(167,139,250,.3); }
.r3 { width: 155px; height: 155px; animation: rotateSlow 14s linear infinite; border-color: rgba(56,189,248,.3); }
@keyframes rotateSlow { to { transform: translate(-50%,-50%) rotate(360deg); } }
.cvg-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 76px; height: 76px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 40px rgba(108,99,255,.4); }
.cvg-center span { font-size: 1.9rem; font-weight: 800; color: var(--white); }
.cvg-dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; top: 50%; left: 50%; }
.d1 { transform: translate(-50%, calc(-50% - 122px)); background: var(--accent); }
.d2 { transform: translate(calc(-50% + 122px), -50%); background: var(--accent-3); }
.d3 { transform: translate(-50%, calc(-50% + 122px)); background: var(--accent-2); }
.d4 { transform: translate(calc(-50% - 122px), -50%); background: var(--accent); }
.cvg-label { position: absolute; font-size: .72rem; font-weight: 700; color: var(--accent); letter-spacing: .06em; text-transform: uppercase; top: 50%; left: 50%; }
.l1 { transform: translate(-50%, calc(-50% - 148px)); }
.l2 { transform: translate(calc(-50% + 148px), -50%); }
.l3 { transform: translate(-50%, calc(-50% + 148px)); }
.l4 { transform: translate(calc(-50% - 148px), -50%); }

/* ===== PROCESS ===== */
.process { padding: 80px 0; background: var(--dark); }
.process .section-tag { background: rgba(167,139,250,.15); color: var(--accent-2); }
.process .section-header h2 { color: var(--white); }
.proc-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; flex-wrap: wrap; }
.proc-step { text-align: center; flex: 1; min-width: 160px; max-width: 220px; padding: 0 16px; }
.ps-num { width: 52px; height: 52px; border-radius: 50%; background: rgba(108,99,255,.2); border: 2px solid var(--accent); color: var(--accent-2); font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.proc-step h4 { color: var(--white); font-size: .97rem; font-weight: 700; margin-bottom: 8px; }
.proc-step p { color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.6; }
.proc-arrow { color: rgba(255,255,255,.2); font-size: 1.4rem; padding: 0 8px; align-self: flex-start; padding-top: 16px; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, #0f0d1f 0%, var(--dark-3) 100%); border-top: 1px solid rgba(108,99,255,.2); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); margin-bottom: 8px; letter-spacing: -.02em; }
.cta-text p { color: rgba(255,255,255,.55); font-size: .97rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark-2); padding: 64px 0 32px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { display: flex; flex-direction: column; gap: 48px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: rgba(255,255,255,.35); font-size: .88rem; margin-top: 12px; line-height: 1.6; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.fn-title { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.footer-nav a, .footer-contact-col a, .footer-contact-col span { font-size: .88rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-nav a:hover, .footer-contact-col a:hover { color: var(--white); }
.footer-contact-col { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.2); text-align: center; }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--dark); padding: 140px 0 72px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb span { color: rgba(255,255,255,.2); }
.page-hero-content h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; color: var(--white); letter-spacing: -.03em; margin-bottom: 16px; line-height: 1.15; }
.page-hero-content p { font-size: 1.05rem; color: rgba(255,255,255,.55); max-width: 520px; line-height: 1.7; }

/* ===== SERVICE DETAIL ===== */
.svc-detail { padding: 96px 0; background: var(--light); }
.svc-alt { background: var(--light-2); }
.svc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.svc-inner-rev { direction: rtl; }
.svc-inner-rev > * { direction: ltr; }

.svc-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.svc-num-tag { font-size: .68rem; font-weight: 800; letter-spacing: .12em; background: rgba(108,99,255,.12); color: var(--accent); padding: 3px 10px; border-radius: 20px; }

.svc-text h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 18px; line-height: 1.2; }
.svc-text p { font-size: .95rem; color: var(--text-light); line-height: 1.75; margin-bottom: 14px; }

.svc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0 32px; }
.sf-item { display: flex; align-items: flex-start; gap: 12px; }
.sf-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(108,99,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.sf-icon svg { width: 18px; height: 18px; }
.sf-item strong { display: block; font-size: .88rem; font-weight: 700; margin-bottom: 3px; }
.sf-item span { font-size: .82rem; color: var(--text-light); line-height: 1.5; }

/* Mockups */
.svc-mockup { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid #e8eaf0; }

.web-mockup .mock-bar { display: flex; gap: 6px; padding: 12px 16px; background: #f1f3f9; border-bottom: 1px solid #e8eaf0; }
.mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: #dde0ec; }
.mock-bar span:first-child { background: #ff6b6b; }
.mock-bar span:nth-child(2) { background: #ffd93d; }
.mock-bar span:nth-child(3) { background: #6bcb77; }
.mock-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.mock-nav { height: 10px; background: #e8eaf0; border-radius: 4px; }
.mock-hero-block { height: 80px; background: linear-gradient(135deg, rgba(108,99,255,.2), rgba(56,189,248,.15)); border-radius: 8px; }
.mock-cards { display: flex; gap: 8px; }
.mock-card { flex: 1; height: 56px; background: #f1f3f9; border-radius: 6px; border: 1px solid #e8eaf0; }
.mock-text-lines { display: flex; flex-direction: column; gap: 6px; }
.mock-line { height: 8px; background: #e8eaf0; border-radius: 4px; }
.mock-line.w80 { width: 80%; }
.mock-line.w60 { width: 60%; }
.mock-line.w90 { width: 90%; }

.seo-mockup { padding: 28px; display: flex; flex-direction: column; gap: 24px; }
.seo-chart { display: flex; align-items: flex-end; gap: 8px; height: 120px; padding: 0 8px; }
.seo-bar { flex: 1; background: rgba(108,99,255,.2); border-radius: 4px 4px 0 0; transition: height .5s ease; }
.seo-bar-hi { background: linear-gradient(to top, var(--accent), var(--accent-2)); }
.seo-keywords { display: flex; flex-direction: column; gap: 8px; }
.seo-kw { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: #f8f9fc; border-radius: 8px; border: 1px solid #e8eaf0; }
.seo-kw-label { font-size: .78rem; font-weight: 800; color: var(--accent); min-width: 28px; }
.seo-kw-text { font-size: .85rem; color: var(--text-light); }

.mkt-mockup { padding: 28px; }
.mkt-flow { display: flex; flex-direction: column; align-items: center; gap: 0; }
.mkt-node { padding: 10px 20px; background: #f1f3f9; border: 1px solid #e8eaf0; border-radius: 20px; font-size: .82rem; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 8px; }
.mkt-node-start { background: rgba(108,99,255,.1); border-color: rgba(108,99,255,.3); color: var(--accent); }
.mkt-node-end { background: rgba(74,222,128,.1); border-color: rgba(74,222,128,.4); color: #16a34a; }
.mkt-node-email { background: rgba(56,189,248,.08); border-color: rgba(56,189,248,.3); }
.mkt-node-social { background: rgba(167,139,250,.1); border-color: rgba(167,139,250,.3); }
.mkt-arrow-v { color: var(--mid); font-size: 1.2rem; margin: 6px 0; line-height: 1; }

/* ===== WHY CARDS ===== */
.svc-why { padding: 96px 0; background: var(--dark); }
.svc-why .section-tag { background: rgba(167,139,250,.15); color: var(--accent-2); }
.svc-why .section-header h2 { color: var(--white); }
.svc-why .section-header p { color: rgba(255,255,255,.5); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 32px 24px; transition: background var(--transition), border-color var(--transition); }
.why-card:hover { background: rgba(108,99,255,.1); border-color: rgba(108,99,255,.25); }
.why-icon { width: 48px; height: 48px; background: rgba(108,99,255,.15); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--accent-2); margin-bottom: 18px; }
.why-icon svg { width: 24px; height: 24px; }
.why-card h4 { font-size: .97rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.65; }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 72px 0 80px; background: var(--light); }
.contact-page-alt { background: var(--light-2); }
.contact-page-inner { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: stretch; }

.contact-section-hd { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
.contact-section-num { font-size: .68rem; font-weight: 800; letter-spacing: .12em; color: var(--accent); background: rgba(108,99,255,.1); border-radius: 20px; padding: 4px 10px; white-space: nowrap; margin-top: 4px; }
.contact-section-hd h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 6px; }
.contact-section-hd p { color: var(--text-light); font-size: .95rem; }

.cp-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* Quote info list */
.cs-promise-list { display: flex; flex-direction: column; gap: 20px; }
.cpl-item { display: flex; align-items: flex-start; gap: 14px; }
.cpl-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(255,255,255,.07); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--accent-2); }
.cpl-icon svg { width: 18px; height: 18px; }
.cpl-item strong { display: block; font-size: .92rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.cpl-item span { font-size: .84rem; color: rgba(255,255,255,.5); line-height: 1.5; }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius); padding: 40px;
  border: 1px solid #e8eaf0; display: flex; flex-direction: column;
}
.contact-form-wrap h2 { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }
.cp-sub { color: var(--text-light); font-size: .95rem; margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; flex: 1; }
.contact-form textarea { flex: 1; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Form success state */
.form-success {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 16px; flex: 1; padding: 40px 20px;
}
.form-success-icon {
  width: 64px; height: 64px; background: rgba(74,222,128,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #16a34a;
}
.form-success-icon svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: -.01em; }
.form-success p { font-size: .92rem; color: var(--text-light); line-height: 1.6; max-width: 320px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid #dde0ec; border-radius: var(--radius-sm);
  font-family: inherit; font-size: .95rem; color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none; resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #9ca3af; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(108,99,255,.12); }
.form-group select { cursor: pointer; }
.form-note { font-size: .8rem; color: var(--mid); text-align: center; }

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; justify-content: space-between; }
.cs-block { background: var(--dark); border-radius: var(--radius); padding: 32px; color: var(--white); }
.cs-block h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: var(--white); }
.cs-item { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.cs-item:last-child { margin-bottom: 0; }
.cs-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(255,255,255,.07); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--accent-2); }
.cs-icon svg { width: 18px; height: 18px; }
.cs-label { display: block; font-size: .72rem; color: rgba(255,255,255,.35); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 3px; }
.cs-item a, .cs-item span { font-size: .92rem; color: rgba(255,255,255,.75); }
.cs-item a:hover { color: var(--accent-2); }

.cs-hours {}
.cs-schedule { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.cs-day { display: flex; justify-content: space-between; font-size: .88rem; color: rgba(255,255,255,.65); }
.cs-closed span { color: rgba(255,255,255,.3); }
.cs-avail { display: flex; align-items: center; gap: 8px; }
.avail-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 8px rgba(74,222,128,.6); animation: pulse 2s ease-in-out infinite; }
.cs-avail span { font-size: .82rem; color: rgba(255,255,255,.45); }

.cs-promise { display: flex; align-items: flex-start; gap: 14px; background: rgba(108,99,255,.32); border: 1px solid rgba(108,99,255,.38); }
.csp-icon { width: 40px; height: 40px; flex-shrink: 0; color: var(--accent-2); }
.csp-icon svg { width: 100%; height: 100%; }
.cs-promise strong { display: block; font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.cs-promise p { font-size: .84rem; color: rgba(255,255,255,.68); line-height: 1.55; }

/* ===== FAQ ===== */
.faq { padding: 80px 0 96px; background: var(--light-2); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid #e8eaf0; }
.faq-item { border-bottom: 1px solid #e8eaf0; background: var(--white); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-family: inherit; font-size: .97rem; font-weight: 600; color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: background var(--transition); }
.faq-q:hover { background: #f8f9fc; }
.faq-q::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--accent); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 24px 20px; font-size: .92rem; color: var(--text-light); line-height: 1.7; }

/* ===== ABOUT PAGE ===== */

/* Mission */
.about-mission { padding: 96px 0; background: var(--light); }
.am-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.am-text .section-tag { margin-bottom: 16px; }
.am-text h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 20px; line-height: 1.2; }
.am-text p { font-size: .97rem; color: var(--text-light); line-height: 1.75; margin-bottom: 14px; }
.am-text p:last-child { margin-bottom: 0; }

.am-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ams-card { background: var(--white); border: 1px solid #e8eaf0; border-radius: var(--radius); padding: 32px 24px; display: flex; flex-direction: column; gap: 8px; transition: transform var(--transition), box-shadow var(--transition); }
.ams-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ams-dark { background: var(--dark); border-color: rgba(108,99,255,.3); }
.ams-dark .ams-num { color: var(--white); }
.ams-dark .ams-label { color: rgba(255,255,255,.4); }
.ams-num { font-size: 2.2rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.ams-label { font-size: .75rem; font-weight: 600; color: var(--mid); letter-spacing: .06em; text-transform: uppercase; }

/* Values */
.about-values { padding: 96px 0; background: var(--light-2); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid #e8eaf0; border-radius: var(--radius); padding: 36px 28px; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(108,99,255,.2); }
.vc-icon { width: 52px; height: 52px; background: rgba(108,99,255,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 18px; }
.vc-icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -.01em; }
.value-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* Approach comparison */
.about-approach { padding: 96px 0; background: var(--light); }
.approach-cols { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; max-width: 900px; margin: 0 auto; }
.acol-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.acol-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.acol-icon svg { width: 22px; height: 22px; }
.acol-no  { background: rgba(239,68,68,.1); color: #ef4444; }
.acol-yes { background: rgba(74,222,128,.12); color: #16a34a; }
.acol-header h3 { font-size: 1.05rem; font-weight: 700; }
.acol-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.acol-list li { font-size: .92rem; line-height: 1.5; padding-left: 24px; position: relative; }
.acol-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; }
.acol-list-no li { color: var(--text-light); }
.acol-list-no li::before { background: #ef4444; opacity: .5; }
.acol-list-yes li { color: var(--text); font-weight: 500; }
.acol-list-yes li::before { background: #16a34a; }

.approach-divider { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ad-line { width: 1px; height: 60px; background: #e8eaf0; }
.ad-vs { font-size: .72rem; font-weight: 800; letter-spacing: .1em; color: var(--mid); background: var(--light-2); border: 1px solid #e8eaf0; border-radius: 20px; padding: 4px 10px; }

/* Expertise bars */
.about-expertise { padding: 80px 0 96px; background: var(--light-2); }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 56px; max-width: 820px; margin: 0 auto; }
.exp-label-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: .88rem; font-weight: 600; color: var(--text); }
.exp-pct { color: var(--accent); font-weight: 700; }
.exp-bar { height: 6px; background: #e8eaf0; border-radius: 3px; overflow: hidden; }
.exp-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 3px; width: 0; transition: width 1.2s cubic-bezier(.4,0,.2,1); }
.exp-item.visible .exp-fill { width: var(--target-width, 0); }

/* ===== PRICING ===== */
.pricing { padding: 100px 0; background: var(--light-2); }

/* Service block */
.pr-service { margin-bottom: 64px; }
.pr-service:last-of-type { margin-bottom: 32px; }
.pr-service-hd {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.pr-svc-num { font-size: .68rem; font-weight: 800; letter-spacing: .12em; color: var(--mid); }
.pr-monthly-note { font-size: .82rem; color: var(--mid); font-weight: 500; margin-left: 4px; }

/* Range card (weboldal + marketing) */
.pr-range-card {
  background: var(--white); border: 1px solid #e8eaf0; border-radius: var(--radius);
  padding: 36px 40px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center;
  transition: box-shadow var(--transition);
}
.pr-range-card:hover { box-shadow: var(--shadow-lg); }
.pr-range-dark {
  background: linear-gradient(160deg, #0f0d1f 0%, #1a1535 100%);
  border-color: rgba(108,99,255,.3);
}

.pr-range-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 6px; }
.pr-range-dark .pr-range-label { color: rgba(255,255,255,.35); }
.pr-range-val { font-size: 1.9rem; font-weight: 800; color: var(--text); letter-spacing: -.03em; line-height: 1.1; }
.pr-range-dark .pr-range-val { color: var(--white); }
.pr-range-note { font-size: .85rem; color: var(--text-light); line-height: 1.6; margin-top: 10px; }
.pr-range-dark .pr-range-note { color: rgba(255,255,255,.45); }

.pr-range-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pr-range-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text); line-height: 1.4; }
.pr-range-feats svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: #4ade80; }
.pr-range-dark .pr-range-feats li { color: rgba(255,255,255,.75); }

.pr-range-cta { white-space: nowrap; }

/* SEO duo grid */
.pr-duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 780px; }

/* Package cards */
.pc-card {
  background: var(--white); border: 1px solid #e8eaf0; border-radius: var(--radius);
  padding: 36px 28px; display: flex; flex-direction: column; gap: 24px;
  position: relative; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(108,99,255,.2); }

.pc-featured {
  background: linear-gradient(160deg, #0f0d1f 0%, #1a1535 100%);
  border-color: rgba(108,99,255,.5);
  box-shadow: 0 12px 40px rgba(108,99,255,.2);
}
.pc-featured:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(108,99,255,.3); }

.pc-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: var(--white); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px; white-space: nowrap;
}

.pc-head { display: flex; flex-direction: column; gap: 10px; }
.pc-name { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.pc-featured .pc-name { color: var(--accent-2); }

.pc-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.pc-amount { font-size: 1.9rem; font-weight: 800; color: var(--text); letter-spacing: -.03em; line-height: 1; }
.pc-featured .pc-amount { color: var(--white); }
.pc-period { font-size: .82rem; color: var(--mid); font-weight: 500; }
.pc-featured .pc-period { color: rgba(255,255,255,.4); }

.pc-desc { font-size: .87rem; color: var(--text-light); line-height: 1.6; }
.pc-featured .pc-desc { color: rgba(255,255,255,.55); }

.pc-features { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.pc-feat { display: flex; align-items: flex-start; gap: 10px; font-size: .87rem; color: var(--text); line-height: 1.45; }
.pc-feat svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: #4ade80; }
.pc-feat-off { color: var(--mid); }
.pc-feat-off svg { color: #d1d5db; }
.pc-featured .pc-feat { color: rgba(255,255,255,.8); }
.pc-featured .pc-feat-off { color: rgba(255,255,255,.3); }
.pc-featured .pc-feat-off svg { color: rgba(255,255,255,.2); }

.pc-btn { width: 100%; text-align: center; }

.pricing-note { text-align: center; font-size: .84rem; color: var(--mid); max-width: 600px; margin: 0 auto; }

@media (max-width: 960px) {
  .pr-range-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .pr-range-cta { width: 100%; text-align: center; }
  .pr-duo-grid { grid-template-columns: 1fr; max-width: 440px; }
}

@media (max-width: 600px) {
  .pr-range-val { font-size: 1.5rem; }
}

/* ===== QUOTE MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(5,5,15,.72);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--white); border-radius: var(--radius);
  width: 100%; max-width: 620px; max-height: 90vh;
  overflow-y: auto; padding: 44px 44px 36px;
  position: relative;
  transform: scale(.95) translateY(18px);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,.06); border: none; border-radius: 8px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-light);
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: rgba(0,0,0,.12); color: var(--text); }

.modal-hd { margin-bottom: 28px; }
.modal-tag {
  display: inline-block; background: rgba(108,99,255,.1); color: var(--accent);
  padding: 4px 12px; border-radius: 20px; font-size: .72rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; margin-bottom: 12px;
}
.modal-hd h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 6px; }
.modal-hd p { font-size: .92rem; color: var(--text-light); line-height: 1.6; }

/* Scrollbar inside modal */
.modal-box::-webkit-scrollbar { width: 6px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb { background: #dde0ec; border-radius: 3px; }

/* ===== FADE-IN ===== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 32px; right: 32px; background: #1a1c26; color: var(--white); padding: 16px 24px; border-radius: var(--radius-sm); font-size: .9rem; box-shadow: var(--shadow-lg); border-left: 3px solid #4ade80; transform: translateY(24px); opacity: 0; transition: all .3s ease; z-index: 999; pointer-events: none; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 900;
  display: flex; justify-content: center;
  opacity: 0; transform: translateY(18px); pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}
.cookie-consent.show { opacity: 1; transform: translateY(0); pointer-events: all; }

.cookie-card {
  position: relative; width: min(100%, 760px);
  background: rgba(255,255,255,.97); border: 1px solid #e8eaf0; border-radius: var(--radius);
  box-shadow: 0 20px 64px rgba(10,11,15,.18);
  padding: 24px; display: grid; grid-template-columns: 1fr; gap: 18px;
}
.cookie-main { padding-right: 36px; }
.cookie-main h2 { font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 6px; }
.cookie-main p { color: var(--text-light); font-size: .92rem; line-height: 1.65; }

.cookie-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: none; border-radius: var(--radius-sm); background: rgba(10,11,15,.06);
  color: var(--text-light); cursor: pointer; transition: background var(--transition), color var(--transition);
}
.cookie-close:hover { background: rgba(10,11,15,.12); color: var(--text); }

.cookie-settings {
  display: none; grid-template-columns: 1fr 1fr; gap: 12px;
}
.cookie-consent.settings-open .cookie-settings { display: grid; }

.cookie-option {
  min-height: 96px; border: 1px solid #e8eaf0; border-radius: var(--radius-sm);
  padding: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--light); cursor: pointer;
}
.cookie-option-locked { cursor: default; }
.cookie-option strong { display: block; font-size: .9rem; margin-bottom: 4px; }
.cookie-option span { display: block; color: var(--text-light); font-size: .8rem; line-height: 1.45; }
.cookie-option input { width: 22px; height: 22px; accent-color: var(--accent); flex-shrink: 0; }
.cookie-pill {
  width: auto; color: #16a34a !important; background: rgba(74,222,128,.14);
  border-radius: 999px; padding: 4px 9px; font-size: .72rem !important; font-weight: 800;
}

.cookie-actions { display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 18px; font-size: .86rem; }
.cookie-actions .cookie-secondary { color: var(--accent); border-color: rgba(108,99,255,.24); }
.cookie-save { display: none; }
.cookie-consent.settings-open .cookie-save { display: inline-flex; }
.cookie-consent.settings-open .cookie-secondary { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .inno-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .company-inner { grid-template-columns: 1fr; gap: 48px; }
  .company-visual { display: none; }
  .svc-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-inner-rev { direction: ltr; }
  .svc-features { grid-template-columns: 1fr; }
  .contact-page-inner { grid-template-columns: 1fr; align-items: start; }
  .contact-sidebar { order: -1; justify-content: flex-start; }
  .contact-form-wrap { padding: 32px 28px; }
  .st-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; }
  .proc-steps { gap: 0; }
  .proc-arrow { display: none; }
}

@media (max-width: 720px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: rgba(10,11,15,.96); backdrop-filter: blur(16px); flex-direction: column; padding: 24px; gap: 20px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-sm { display: none; }
  .inno-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-consent { left: 12px; right: 12px; bottom: 12px; }
  .cookie-card { padding: 20px; }
  .cookie-settings { grid-template-columns: 1fr; }
  .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions .btn { width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 20px 24px; }
  .contact-form-wrap { padding: 24px 20px; }
}
