/* ============================================
   SmartONE KÉSZLETKEZELŐ - Éles weboldal CSS
   Alap: ALAP sablon stílus + visual kiegészítés
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0c5c8f;
  --primary-dark: #083d5e;
  --primary-light: #1a8fd1;
  --accent: #e8a520;
  --accent-hover: #d4941a;
  --dark: #1a1a2e;
  --text: #333;
  --text-light: #666;
  --light: #f5f7fa;
  --white: #fff;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: 0.3s ease;
  /* Visual timeline vars */
  --v-primary: #4f46e5;
  --v-primary-light: #eef2ff;
  --v-primary-mid: #a5b4fc;
  --v-success: #16a34a;
  --v-warning: #d97706;
  --v-info: #0284c7;
  --v-danger: #dc2626;
  --v-muted: #6b7280;
  --v-border: #e5e7eb;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); line-height: 1.6; background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
h1, h2, h3, h4, h5, h6 { line-height: 1.3; color: var(--dark); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* --- Top Bar --- */
.top-bar { background: var(--dark); color: var(--white); font-size: 0.85rem; padding: 8px 0; }
.top-bar .container { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar a { color: var(--white); display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; }
.top-bar a:hover { color: var(--accent); }
.top-bar-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* --- Navigation --- */
.navbar { background: var(--white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 0; padding-bottom: 0; min-height: 60px; }
.logo { font-size: 1.2rem; font-weight: 800; color: var(--primary); white-space: nowrap; display: inline-flex; align-items: center; }
.logo span { color: var(--accent); }
.logo-svg { height: 28px; width: auto; }
.menu-toggle { display: none; }
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.nav-menu { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-lg); padding: 16px 0; z-index: 999; }
.menu-toggle:checked ~ .nav-menu { display: flex; }
.menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
.menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.nav-menu > li > a, .nav-menu > li > label { display: block; padding: 12px 24px; font-weight: 500; color: var(--text); cursor: pointer; transition: background var(--transition), color var(--transition); }
.nav-menu > li > a:hover, .nav-menu > li > label:hover { background: var(--light); color: var(--primary); }
.nav-menu .active > a { color: var(--primary); font-weight: 700; }
.dropdown-checkbox { display: none; }
.nav-dropdown > label { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; font-weight: 500; cursor: pointer; user-select: none; }
.nav-dropdown > label .arrow { font-size: 0.7rem; transition: transform var(--transition); margin-left: 6px; }
.dropdown-menu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: var(--light); }
.dropdown-checkbox:checked ~ .dropdown-menu { max-height: 500px; }
.dropdown-checkbox:checked ~ label .arrow { transform: rotate(180deg); }
.dropdown-menu li a { display: block; padding: 10px 24px 10px 40px; font-size: 0.92rem; color: var(--text-light); transition: background var(--transition), color var(--transition); border-left: 3px solid transparent; }
.dropdown-menu li a:hover { background: var(--white); color: var(--primary); border-left-color: var(--primary); }
.nav-cta { display: none !important; }
.nav-menu-cta { display: block !important; margin: 12px 24px 4px; text-align: center; padding: 12px 24px !important; background: var(--accent); color: var(--dark) !important; border-radius: var(--radius); font-weight: 600; font-size: 1rem; transition: background var(--transition); }
.nav-menu-cta:hover { background: var(--accent-hover); color: var(--dark) !important; }

/* --- Hero --- */
.hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%); color: var(--white); padding: 50px 0 60px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -30%; width: 500px; height: 500px; background: rgba(255,255,255,0.03); border-radius: 50%; }
.hero h1 { font-size: 1.8rem; color: var(--white); margin-bottom: 16px; font-weight: 800; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1rem; opacity: 0.9; max-width: 600px; margin: 0 auto 28px; line-height: 1.7; }
.hero-buttons { display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 1rem; border: none; cursor: pointer; transition: all var(--transition); text-align: center; min-width: 200px; }
.btn-accent { background: var(--accent); color: var(--dark); }
.btn-accent:hover { background: var(--accent-hover); color: var(--dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(232,165,32,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(12,92,143,0.4); }

/* --- Module Strip --- */
.services-strip { background: var(--white); padding: 40px 0; border-bottom: 1px solid #eee; }
.strip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.strip-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px 12px; border-radius: var(--radius); background: var(--light); transition: all var(--transition); }
.strip-item:hover { background: var(--primary); color: var(--white); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.strip-item:hover .strip-icon { color: var(--accent); }
.strip-icon { width: 40px; height: 40px; margin-bottom: 10px; color: var(--primary); transition: color var(--transition); }
.strip-item h3 { font-size: 0.85rem; font-weight: 600; transition: color var(--transition); }
.strip-item:hover h3 { color: var(--white); }

/* --- Section Common --- */
.section { padding: 50px 0; }
.section-alt { background: var(--light); }
.section-title { text-align: center; margin-bottom: 12px; font-size: 1.6rem; color: var(--dark); }
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 36px; font-size: 0.95rem; }

/* --- Why Us --- */
.why-us-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.why-card { background: var(--white); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); display: flex; align-items: flex-start; gap: 16px; transition: transform var(--transition), box-shadow var(--transition); }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.why-card-icon { width: 44px; height: 44px; flex-shrink: 0; color: var(--primary); }
.why-card h3 { font-size: 1rem; margin-bottom: 6px; }
.why-card p { font-size: 0.9rem; color: var(--text-light); }

/* --- Service Cards --- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.service-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 200px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); display: flex; align-items: center; justify-content: center; }
.service-card-img svg { width: 64px; height: 64px; color: var(--white); opacity: 0.8; }
.service-card-body { padding: 20px; }
.service-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 14px; }
.service-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 4px; }
.service-link:hover { color: var(--accent); }

/* --- Reviews --- */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.review-card { background: var(--white); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); position: relative; }
.review-card::before { content: '\201C'; font-size: 4rem; color: var(--primary); opacity: 0.15; position: absolute; top: 8px; left: 16px; line-height: 1; font-family: Georgia, serif; }
.review-stars { color: var(--accent); font-size: 1rem; margin-bottom: 10px; }
.review-card p { font-size: 0.9rem; color: var(--text-light); font-style: italic; margin-bottom: 12px; line-height: 1.6; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--dark); }

/* --- CTA Banner --- */
.cta-banner { background: var(--primary-dark); color: var(--white); padding: 30px 0; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.cta-banner p { margin-bottom: 16px; color: rgba(255,255,255,0.9); }
.cta-banner .btn { background: var(--accent); color: var(--dark); }
.cta-banner .btn:hover { background: var(--white); color: var(--primary-dark); }

/* --- Contact / Form --- */
.contact-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 50px 0; color: var(--white); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-subtitle { color: rgba(255,255,255,0.8); }
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 16px; border: 2px solid rgba(255,255,255,0.2); border-radius: var(--radius); background: rgba(255,255,255,0.1); color: var(--white); font-size: 0.95rem; font-family: inherit; transition: border-color var(--transition); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.6); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }

/* --- Page Header --- */
.page-header { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); padding: 40px 0; text-align: center; }
.page-header h1 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.page-header p { opacity: 0.85; }

/* --- Footer --- */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--accent); border-radius: 2px; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a { font-size: 0.9rem; transition: color var(--transition), padding-left var(--transition); }
.footer-links li a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; }
.footer-contact-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.82rem; }

/* --- Contact Page --- */
.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
.contact-info-card { background: var(--white); padding: 28px 24px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; transition: transform var(--transition); }
.contact-info-card:hover { transform: translateY(-3px); }
.contact-info-card svg { width: 40px; height: 40px; color: var(--primary); margin-bottom: 12px; }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-info-card p { color: var(--text-light); font-size: 0.92rem; }
.contact-info-card a { color: var(--primary); font-weight: 600; }
.contact-info-card a:hover { color: var(--accent); }
.contact-page-form { background: var(--white); padding: 32px 24px; border-radius: var(--radius); box-shadow: var(--shadow); max-width: 700px; margin: 0 auto; }
.contact-page-form h2 { font-size: 1.3rem; margin-bottom: 6px; text-align: center; }
.contact-page-form > p { text-align: center; color: var(--text-light); font-size: 0.92rem; margin-bottom: 24px; }
.contact-page-form .form-group input, .contact-page-form .form-group textarea, .contact-page-form .form-group select { background: var(--light); color: var(--text); border: 2px solid #e0e0e0; }
.contact-page-form .form-group input::placeholder, .contact-page-form .form-group textarea::placeholder { color: var(--text-light); }
.contact-page-form .form-group input:focus, .contact-page-form .form-group textarea:focus, .contact-page-form .form-group select:focus { border-color: var(--primary); outline: none; }
.contact-page-form .form-group select { color: var(--text-light); appearance: auto; }

/* --- Pricing (egyedi) --- */
.pricing-single { text-align: center; max-width: 700px; margin: 0 auto; }
.pricing-single-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 40px 32px; border-top: 5px solid var(--accent); }
.pricing-single-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.pricing-single-card .price { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.pricing-single-card .price-sub { font-size: 0.95rem; color: var(--text-light); margin-bottom: 24px; }
.pricing-features { text-align: left; max-width: 480px; margin: 0 auto 28px; }
.pricing-features li { padding: 8px 0; font-size: 0.95rem; color: var(--text); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #f0f0f0; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '\2713'; color: var(--primary); font-weight: 700; flex-shrink: 0; font-size: 1.1rem; }

/* --- Offers / Packages (single egyedi) --- */
.offer-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 24px; text-align: center; border-top: 4px solid var(--primary); transition: transform var(--transition), box-shadow var(--transition); }
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer-card.featured { border-top-color: var(--accent); position: relative; }
.offer-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--dark); font-size: 0.75rem; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.offer-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.offer-card .price { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.offer-card .price small { font-size: 0.85rem; font-weight: 400; color: var(--text-light); }
.offer-features { text-align: left; margin-bottom: 20px; }
.offer-features li { padding: 6px 0; font-size: 0.9rem; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.offer-features li::before { content: '\2713'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* --- Stats Row --- */
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.stat-box { text-align: center; padding: 20px 12px; background: rgba(255,255,255,0.08); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.15); }
.stat-box .stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-box .stat-label { font-size: 0.85rem; opacity: 0.85; margin-top: 4px; }

/* --- Feature Icon Grid --- */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.feature-item { text-align: center; padding: 28px 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); transition: all var(--transition); }
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-item svg { width: 48px; height: 48px; color: var(--primary); margin-bottom: 12px; }
.feature-item h3 { font-size: 1rem; margin-bottom: 6px; }
.feature-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }

/* ============================================
   VISUAL TIMELINE - Beágyazott modul bemutatók
   ============================================ */
.visual-embed { margin: 0; padding: 0; }
.visual-embed .v-section-intro { text-align: center; padding: 32px 0 10px; }
.visual-embed .v-section-intro h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.visual-embed .v-section-intro p { color: var(--v-muted); max-width: 60ch; margin: 0 auto; font-size: 0.95rem; }

.visual-embed .timeline { position: relative; margin-top: 10px; padding: 10px 0; }
.visual-embed .timeline::before { content:""; position:absolute; left:50%; top:0; bottom:0; width:3px; background:linear-gradient(180deg, var(--v-primary-mid), var(--v-border) 20%, var(--v-border) 80%, var(--v-primary-mid)); transform:translateX(-1.5px); border-radius:3px; }

.visual-embed .step { position:relative; display:grid; grid-template-columns:1fr 1fr; column-gap:36px; padding:32px 0; align-items:start; scroll-margin-top:90px; }
.visual-embed .step::before { content:attr(data-num); position:absolute; left:50%; top:42px; width:36px; height:36px; border-radius:50%; background:#fff; border:3px solid var(--v-border); transform:translateX(-18px); transition:all .35s cubic-bezier(.4,0,.2,1); z-index:5; display:grid; place-content:center; font-size:14px; font-weight:700; color:var(--v-muted); }
.visual-embed .step.is-active::before { border-color:var(--v-primary); background:var(--v-primary); color:#fff; transform:translateX(-18px) scale(1.1); box-shadow:0 0 0 6px rgba(79,70,229,.15); }

.visual-embed .connector { position:absolute; top:58px; height:3px; width:calc(50% - 24px); background:var(--v-border); z-index:1; transition:background .35s ease; }
.visual-embed .connector.left { left:24px; }
.visual-embed .connector.right { right:24px; }
.visual-embed .step.is-active .connector { background:var(--v-primary-mid); }

.visual-embed .v-card { border:1px solid var(--v-border); background:#fff; border-radius:16px; box-shadow:0 10px 30px rgba(0,0,0,.06); padding:20px; transition:all .35s cubic-bezier(.4,0,.2,1); }
.visual-embed .step.is-active .v-card { border-color:var(--v-primary-mid); box-shadow:0 10px 30px rgba(79,70,229,.08); transform:translateY(-2px); }
.visual-embed .v-card .meta { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:12px; }
.visual-embed .v-card .pill { border:1px solid var(--v-primary-mid); border-radius:999px; padding:5px 12px; background:var(--v-primary-light); color:var(--v-primary); font-size:12px; font-weight:600; white-space:nowrap; }
.visual-embed .v-card .meta-label { font-size:13px; color:var(--v-muted); font-weight:500; }
.visual-embed .v-card h3 { font-size:1.15rem; font-weight:700; line-height:1.25; color:#111827; margin-bottom:12px; }
.visual-embed .v-card ul { padding-left:0; list-style:none; display:grid; gap:8px; }
.visual-embed .v-card li { display:flex; align-items:flex-start; gap:8px; font-size:14.5px; color:#374151; line-height:1.5; }
.visual-embed .v-card li::before { content:""; flex-shrink:0; width:6px; height:6px; border-radius:50%; background:var(--v-primary); margin-top:8px; }
.visual-embed .left { grid-column:1/2; }
.visual-embed .right { grid-column:2/3; }

.visual-embed .hint { margin-top:14px; font-size:12px; color:var(--v-muted); display:flex; gap:10px; align-items:center; }
.visual-embed .playBtn { border:1px solid var(--v-primary-mid); background:var(--v-primary-light); color:var(--v-primary); padding:7px 14px; border-radius:999px; cursor:pointer; font-size:12px; font-weight:600; transition:all .2s ease; display:inline-flex; align-items:center; gap:5px; }
.visual-embed .playBtn:hover { background:var(--v-primary); color:#fff; transform:translateY(-1px); }
.visual-embed .playBtn svg { width:14px; height:14px; }

/* Mock UI */
.visual-embed .mock { border:1px solid var(--v-border); border-radius:18px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,.06); background:#fff; transition:all .35s cubic-bezier(.4,0,.2,1); cursor:pointer; }
.visual-embed .step.is-active .mock { box-shadow:0 14px 40px rgba(79,70,229,.1); }
.visual-embed .mock__topbar { display:flex; align-items:center; gap:6px; padding:10px 14px; border-bottom:1px solid #f3f4f6; background:#fafbfc; }
.visual-embed .dot { width:10px; height:10px; border-radius:50%; display:inline-block; }
.visual-embed .dot:nth-child(1) { background:#fca5a5; }
.visual-embed .dot:nth-child(2) { background:#fcd34d; }
.visual-embed .dot:nth-child(3) { background:#86efac; }
.visual-embed .mock__title { margin-left:auto; font-size:12px; color:var(--v-muted); font-weight:500; }

.visual-embed .mockLayout { display:grid; grid-template-columns:140px 1fr; gap:0; min-height:280px; }
.visual-embed .mockSidebar { background:#1e1b4b; padding:14px 10px; display:flex; flex-direction:column; gap:4px; }
.visual-embed .mockSidebar__logo { font-size:15px; font-weight:800; color:#a5b4fc; margin-bottom:10px; padding:0 4px; }
.visual-embed .mockNav { padding:7px 8px; border-radius:8px; font-size:11.5px; color:#94a3b8; cursor:default; transition:all .25s ease; display:flex; align-items:center; gap:6px; white-space:nowrap; }
.visual-embed .mockNav.active { background:rgba(99,102,241,.25); color:#e0e7ff; font-weight:600; }
.visual-embed .mockNav svg { width:14px; height:14px; flex-shrink:0; }
.visual-embed .mockMain { padding:14px; background:#f9fafb; overflow:hidden; }

.visual-embed .mockHeader { display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
.visual-embed .mockH { font-size:14px; font-weight:700; color:#111827; }
.visual-embed .mockBtn { padding:5px 10px; border-radius:8px; font-size:11px; font-weight:600; border:none; cursor:default; display:inline-flex; align-items:center; gap:4px; }
.visual-embed .mockBtn--primary { background:var(--v-primary); color:#fff; }
.visual-embed .mockBtn--secondary { background:#e5e7eb; color:#374151; }
.visual-embed .mockBtn--success { background:var(--v-success); color:#fff; }
.visual-embed .mockBtn svg { width:12px; height:12px; }

.visual-embed .mockBadge { display:inline-block; padding:2px 8px; border-radius:999px; font-size:10px; font-weight:600; }
.visual-embed .mockBadge--success { background:#dcfce7; color:#166534; }
.visual-embed .mockBadge--warning { background:#fef3c7; color:#92400e; }
.visual-embed .mockBadge--info { background:#dbeafe; color:#1e40af; }
.visual-embed .mockBadge--gray { background:#f3f4f6; color:#6b7280; }
.visual-embed .mockBadge--primary { background:#eef2ff; color:#4338ca; }
.visual-embed .mockBadge--danger { background:#fef2f2; color:#991b1b; }

.visual-embed .mockForm { display:grid; gap:10px; }
.visual-embed .mockFormRow { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.visual-embed .mockField { opacity:0; transform:translateY(8px); }
.visual-embed .mockField label { display:block; font-size:10px; font-weight:600; color:var(--v-muted); margin-bottom:3px; text-transform:uppercase; letter-spacing:.04em; }
.visual-embed .mockField .fakeInput { height:30px; border:1px solid #e5e7eb; border-radius:8px; background:#fff; padding:0 8px; font-size:12px; color:#374151; display:flex; align-items:center; }
.visual-embed .mockField .fakeInput--filled { border-color:var(--v-primary-mid); background:var(--v-primary-light); }

.visual-embed .projCards { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.visual-embed .projCard { border:1px solid #e5e7eb; border-radius:12px; padding:10px; background:#fff; opacity:0; transform:translateY(8px); }
.visual-embed .projCard__code { font-family:monospace; font-size:10px; background:#f3f4f6; padding:2px 6px; border-radius:4px; color:var(--v-muted); }
.visual-embed .projCard__name { font-size:12px; font-weight:600; color:#111827; margin:5px 0 3px; }
.visual-embed .projCard__meta { font-size:10px; color:var(--v-muted); }

.visual-embed .mockFilterBar { display:flex; gap:6px; margin-bottom:10px; flex-wrap:wrap; }
.visual-embed .mockChip { padding:5px 10px; border:1px solid #e5e7eb; border-radius:999px; font-size:11px; background:#fff; color:#374151; }
.visual-embed .mockChip.active { background:var(--v-primary); color:#fff; border-color:var(--v-primary); }
.visual-embed .mockSearchInput { flex:1; min-width:100px; height:28px; border:1px solid #e5e7eb; border-radius:999px; padding:0 10px; font-size:11px; background:#fff; color:#9ca3af; }

.visual-embed .statCards { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-bottom:10px; }
.visual-embed .statCards--4 { grid-template-columns:repeat(4,1fr); }
.visual-embed .statCards--5 { grid-template-columns:repeat(5,1fr); }
.visual-embed .statCard { border:1px solid #e5e7eb; border-radius:10px; padding:8px 10px; background:#fff; text-align:center; opacity:0; transform:translateY(8px); }
.visual-embed .statCard__val { font-size:18px; font-weight:800; line-height:1.2; }
.visual-embed .statCard__label { font-size:9px; color:var(--v-muted); text-transform:uppercase; letter-spacing:.04em; }

.visual-embed .mockTable { width:100%; border-collapse:collapse; font-size:11px; }
.visual-embed .mockTable th { text-align:left; font-size:9px; text-transform:uppercase; letter-spacing:.05em; color:var(--v-muted); padding:6px; border-bottom:2px solid #e5e7eb; font-weight:600; }
.visual-embed .mockTable td { padding:7px 6px; border-bottom:1px solid #f3f4f6; color:#374151; }
.visual-embed .mockTable tr { opacity:0; transform:translateY(6px); }
.visual-embed .mockTable .mono { font-family:monospace; font-size:10px; color:var(--v-primary); font-weight:600; }
.visual-embed .mockTable .text-right { text-align:right; }
.visual-embed .mockTable .font-medium { font-weight:600; }
.visual-embed .mockTable .text-red { color:var(--v-danger); }
.visual-embed .mockTable .text-green { color:var(--v-success); }

.visual-embed .movArrow { display:flex; align-items:center; justify-content:center; gap:12px; margin:10px 0; opacity:0; transform:scale(.95); }
.visual-embed .movBox { border:1px solid #e5e7eb; border-radius:10px; padding:8px 12px; background:#fff; text-align:center; font-size:11px; font-weight:600; }
.visual-embed .movBox--from { border-color:#fca5a5; background:#fef2f2; color:#991b1b; }
.visual-embed .movBox--to { border-color:#86efac; background:#f0fdf4; color:#166534; }
.visual-embed .movArrowIcon { color:var(--v-primary); }
.visual-embed .movArrowIcon svg { width:20px; height:20px; }

.visual-embed .costBox { border:1px solid #c7d2fe; border-radius:12px; padding:12px; background:var(--v-primary-light); text-align:center; margin-top:10px; opacity:0; transform:translateY(8px); }
.visual-embed .costBox__val { font-size:22px; font-weight:800; color:var(--v-primary); }
.visual-embed .costBox__label { font-size:10px; color:#6366f1; font-weight:500; }
.visual-embed .costBox__sub { font-size:9px; color:var(--v-muted); margin-top:2px; }

.visual-embed .mockChart { height:80px; border-radius:10px; border:1px solid #f3f4f6; background:linear-gradient(180deg,#fafbfc,#fff); position:relative; overflow:hidden; margin-top:8px; }
.visual-embed .mockBar { position:absolute; bottom:8px; width:12%; border-radius:6px; opacity:0; transform:translateY(10px); }

.visual-embed .mockProgress { height:8px; background:#e5e7eb; border-radius:999px; overflow:hidden; margin-top:4px; }
.visual-embed .mockProgress__fill { height:100%; border-radius:999px; transition:width .6s ease; width:0; }

/* Visual animations */
@keyframes v-fadeUp { from { transform:translateY(8px); opacity:0; } to { transform:translateY(0); opacity:1; } }
@keyframes v-pop { from { transform:scale(.92); opacity:0; } to { transform:scale(1); opacity:1; } }
@keyframes v-barIn { from { transform:translateY(10px); opacity:0; } to { transform:translateY(0); opacity:1; } }
@keyframes v-arrowBounce { 0%,100% { transform:translateX(0); } 50% { transform:translateX(6px); } }

.visual-embed .play .mockField { animation:v-fadeUp .3s ease both; }
.visual-embed .play .mockField:nth-child(1) { animation-delay:.05s; }
.visual-embed .play .mockField:nth-child(2) { animation-delay:.1s; }
.visual-embed .play .mockField:nth-child(3) { animation-delay:.15s; }
.visual-embed .play .mockField:nth-child(4) { animation-delay:.2s; }
.visual-embed .play .mockField:nth-child(5) { animation-delay:.25s; }
.visual-embed .play .mockField:nth-child(6) { animation-delay:.3s; }

.visual-embed .play .projCard { animation:v-fadeUp .3s ease both; }
.visual-embed .play .projCard:nth-child(1) { animation-delay:.05s; }
.visual-embed .play .projCard:nth-child(2) { animation-delay:.12s; }
.visual-embed .play .projCard:nth-child(3) { animation-delay:.19s; }
.visual-embed .play .projCard:nth-child(4) { animation-delay:.26s; }

.visual-embed .play .statCard { animation:v-fadeUp .3s ease both; }
.visual-embed .play .statCard:nth-child(1) { animation-delay:.05s; }
.visual-embed .play .statCard:nth-child(2) { animation-delay:.12s; }
.visual-embed .play .statCard:nth-child(3) { animation-delay:.19s; }
.visual-embed .play .statCard:nth-child(4) { animation-delay:.26s; }
.visual-embed .play .statCard:nth-child(5) { animation-delay:.33s; }

.visual-embed .play .mockTable tr { animation:v-fadeUp .25s ease both; }
.visual-embed .play .mockTable tr:nth-child(1) { animation-delay:.08s; }
.visual-embed .play .mockTable tr:nth-child(2) { animation-delay:.14s; }
.visual-embed .play .mockTable tr:nth-child(3) { animation-delay:.20s; }
.visual-embed .play .mockTable tr:nth-child(4) { animation-delay:.26s; }
.visual-embed .play .mockTable tr:nth-child(5) { animation-delay:.32s; }

.visual-embed .play .movArrow { animation:v-pop .35s ease both .1s; }
.visual-embed .play .movArrowIcon svg { animation:v-arrowBounce .8s ease both .3s infinite; }

.visual-embed .play .mockBar { animation:v-barIn .35s ease both; }
.visual-embed .play .mockBar:nth-child(1) { left:6%; height:30%; background:#c7d2fe; animation-delay:.05s; }
.visual-embed .play .mockBar:nth-child(2) { left:22%; height:55%; background:#a5b4fc; animation-delay:.1s; }
.visual-embed .play .mockBar:nth-child(3) { left:38%; height:40%; background:#c7d2fe; animation-delay:.15s; }
.visual-embed .play .mockBar:nth-child(4) { left:54%; height:72%; background:#818cf8; animation-delay:.2s; }
.visual-embed .play .mockBar:nth-child(5) { left:70%; height:48%; background:#a5b4fc; animation-delay:.25s; }
.visual-embed .play .mockBar:nth-child(6) { left:86%; height:60%; background:#c7d2fe; animation-delay:.3s; }

.visual-embed .play .costBox { animation:v-pop .35s ease both .15s; }
.visual-embed .play .mockBtn--primary { animation:v-pop .3s ease both .35s; }

/* ============================================
   TABLET - 600px+
   ============================================ */
@media (min-width: 600px) {
  .strip-grid { grid-template-columns: repeat(3, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: row; justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   DESKTOP - 900px+
   ============================================ */
@media (min-width: 900px) {
  .hamburger { display: none; }
  .nav-menu { display: flex !important; position: static; flex-direction: row; background: transparent; box-shadow: none; padding: 0; align-items: center; gap: 0; }
  .nav-menu > li > a, .nav-menu > li > label { padding: 20px 16px; font-size: 0.92rem; }
  .nav-menu > li > a:hover, .nav-menu > li > label:hover { background: transparent; color: var(--primary); }
  .nav-dropdown { position: relative; }
  .nav-dropdown > label { padding: 20px 16px; font-size: 0.92rem; }
  .dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--white); box-shadow: var(--shadow-lg); border-radius: 0 0 var(--radius) var(--radius); max-height: 0; opacity: 0; transition: max-height 0.3s ease, opacity 0.3s ease; }
  .nav-dropdown:hover > .dropdown-menu, .nav-dropdown:focus-within > .dropdown-menu { max-height: 500px; opacity: 1; }
  .nav-dropdown:hover > label .arrow, .nav-dropdown:focus-within > label .arrow { transform: rotate(180deg); }
  .dropdown-menu li a { padding: 10px 20px; }
  .nav-cta { display: inline-flex !important; margin-left: 12px; }
  .nav-menu-cta { display: none !important; }
  .nav-menu > li:has(.nav-menu-cta) { display: none !important; }

  .strip-grid { grid-template-columns: repeat(5, 1fr); }
  .why-us-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 80px 0 90px; }
  .hero h1 { font-size: 2.8rem; }
  .hero p { font-size: 1.1rem; }
  .section { padding: 70px 0; }
  .section-title { font-size: 2rem; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .top-bar .container { justify-content: flex-end; }
}

@media (min-width: 1200px) {
  .container { padding: 0 24px; }
  .hero h1 { font-size: 3.2rem; }
}

/* Visual timeline responsive */
@media (max-width: 980px) {
  .visual-embed .timeline::before { left:18px; transform:none; }
  .visual-embed .step { grid-template-columns:1fr; padding-left:48px; row-gap:16px; }
  .visual-embed .step::before { left:18px; transform:translateX(-18px); top:32px; }
  .visual-embed .connector { display:none; }
  .visual-embed .left, .visual-embed .right { grid-column:1/-1; }
  .visual-embed .mockLayout { grid-template-columns:1fr; }
  .visual-embed .mockSidebar { display:none; }
  .visual-embed .projCards { grid-template-columns:1fr; }
  .visual-embed .statCards, .visual-embed .statCards--4, .visual-embed .statCards--5 { grid-template-columns:1fr 1fr; }
}

/* Form success message */
.form-success-msg { text-align: center; padding: 40px 20px; background: #f0fdf4; border: 2px solid #86efac; border-radius: var(--radius); margin-top: 24px; }

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
