/* ── Variables ────────────────────────────────────────────────── */
:root {
    --primary:       #1C2E3E;
    --accent:        #00AEEF;
    --accent-dark:   #0090C8;
    --accent-light:  #E6F7FD;
    --white:         #FFFFFF;
    --gray-50:       #F4F7FA;
    --gray-100:      #EAF0F5;
    --gray-200:      #D0DCE8;
    --gray-400:      #8FA3B4;
    --gray-600:      #5A6F80;
    --text:          #1C2E3E;
    --text-muted:    #6B7F90;
    --border:        rgba(0,0,0,.08);
    --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
    --shadow-md:     0 4px 16px rgba(0,0,0,.1);
    --shadow-lg:     0 8px 32px rgba(0,0,0,.12);
    --radius:        10px;
    --radius-lg:     16px;
    --transition:    .2s ease;
    --font:          'Inter', system-ui, sans-serif;
    --max-w:         1140px;
    --header-h:      88px;
}

/* ── Reset ────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--font); color:var(--text); background:var(--white); line-height:1.65; -webkit-font-smoothing:antialiased; }
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
address { font-style:normal; }
button { font-family:var(--font); cursor:pointer; border:none; background:none; }

/* ── Container ────────────────────────────────────────────────── */
.container { width:100%; max-width:var(--max-w); margin:0 auto; padding:0 24px; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn { display:inline-flex; align-items:center; gap:8px; padding:12px 24px; border-radius:8px; font-size:15px; font-weight:600; transition:all var(--transition); cursor:pointer; border:2px solid transparent; }
.btn-primary { background:var(--accent); color:var(--white); border-color:var(--accent); }
.btn-primary:hover { background:var(--accent-dark); border-color:var(--accent-dark); transform:translateY(-1px); box-shadow:0 4px 16px rgba(0,174,239,.35); }
.btn-outline { background:transparent; color:var(--primary); border-color:var(--primary); }
.btn-outline:hover { background:var(--primary); color:var(--white); }
.btn-outline-white { background:transparent; color:var(--white); border-color:rgba(255,255,255,.6); }
.btn-outline-white:hover { background:rgba(255,255,255,.15); border-color:var(--white); }
.btn-lg { padding:15px 32px; font-size:16px; border-radius:10px; }
.btn svg { flex-shrink:0; }

/* ── Header ───────────────────────────────────────────────────── */
.site-header { position:sticky; top:0; z-index:100; background:var(--white); border-bottom:1px solid var(--border); height:var(--header-h); transition:box-shadow var(--transition); }
.site-header.scrolled { box-shadow:var(--shadow-md); }
.header-inner { display:flex; align-items:center; justify-content:space-between; height:100%; gap:24px; }

.logo { display:flex; align-items:center; }
.logo img {
    height: 58px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo-text { font-size:20px; font-weight:800; letter-spacing:-.5px; }
.logo-it   { color:var(--primary); }
.logo-is   { color:var(--accent); }
.logo-easy { color:var(--primary); }

.main-nav ul { display:flex; align-items:center; gap:4px; }
.main-nav a { display:block; padding:8px 14px; font-size:14px; font-weight:500; color:var(--text); border-radius:7px; transition:all var(--transition); }
.main-nav a:hover, .main-nav a.active { color:var(--accent); background:var(--accent-light); }

.header-actions { display:flex; align-items:center; gap:12px; }
.header-cta { padding:9px 18px; font-size:13px; white-space:nowrap; }
.nav-toggle { display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px; width:40px; height:40px; border-radius:8px; background:var(--gray-50); }
.nav-toggle span { display:block; width:20px; height:2px; background:var(--primary); border-radius:2px; transition:all var(--transition); }
.nav-toggle.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity:0; }
.nav-toggle.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero { background:linear-gradient(135deg, var(--primary) 0%, #0d4f72 100%); color:var(--white); padding:100px 0 80px; overflow:hidden; position:relative; }
.hero::after { content:''; position:absolute; right:-100px; top:-100px; width:500px; height:500px; background:var(--accent); opacity:.05; border-radius:50%; pointer-events:none; }
.hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; position:relative; z-index:1; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(0,174,239,.2); border:1px solid rgba(0,174,239,.4); color:var(--accent); padding:6px 14px; border-radius:20px; font-size:13px; font-weight:600; margin-bottom:20px; }
.hero h1 { font-size:clamp(32px,4vw,52px); font-weight:800; line-height:1.15; margin-bottom:20px; letter-spacing:-.5px; }
.hero h1 em { font-style:normal; color:var(--accent); }
.hero-sub { font-size:18px; color:rgba(255,255,255,.8); margin-bottom:36px; max-width:480px; line-height:1.7; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.hero-trust { margin-top:40px; display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.hero-trust-item { display:flex; align-items:center; gap:8px; font-size:14px; color:rgba(255,255,255,.7); }
.hero-trust-item svg { color:var(--accent); }

.hero-visual { display:flex; justify-content:center; align-items:center; }
.hero-card-stack { position:relative; width:100%; max-width:400px; }
.hero-card { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); backdrop-filter:blur(10px); border-radius:var(--radius-lg); padding:24px; }
.hero-card + .hero-card { margin-top:16px; }
.hero-card-icon { width:44px; height:44px; background:var(--accent); border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:12px; }
.hero-card-icon svg { color:var(--white); }
.hero-card h3 { font-size:16px; font-weight:700; color:var(--white); margin-bottom:4px; }
.hero-card p { font-size:13px; color:rgba(255,255,255,.6); }

/* ── Section base ─────────────────────────────────────────────── */
section { padding:80px 0; }
.section-label { display:inline-block; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:var(--accent); margin-bottom:12px; }
.section-title { font-size:clamp(26px,3vw,38px); font-weight:800; color:var(--primary); line-height:1.25; margin-bottom:16px; letter-spacing:-.3px; }
.section-sub { font-size:17px; color:var(--text-muted); max-width:560px; line-height:1.7; }
.section-header { margin-bottom:52px; }
.section-header.center { text-align:center; }
.section-header.center .section-sub { margin:0 auto; }

/* ── USPs grid ────────────────────────────────────────────────── */
.usps { background:var(--gray-50); }
.usps-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:24px; }
.usp-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px 24px; transition:all var(--transition); }
.usp-card:hover { border-color:var(--accent); box-shadow:var(--shadow-md); transform:translateY(-3px); }
.usp-icon { width:48px; height:48px; background:var(--accent-light); border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.usp-icon svg { color:var(--accent); }
.usp-card h3 { font-size:16px; font-weight:700; margin-bottom:8px; color:var(--primary); }
.usp-card p { font-size:14px; color:var(--text-muted); line-height:1.6; }

/* ── Services grid ────────────────────────────────────────────── */
.services-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:24px; }
.service-card { border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px 28px; transition:all var(--transition); position:relative; overflow:hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--accent); transform:scaleX(0); transition:transform var(--transition); transform-origin:left; }
.service-card:hover::before { transform:scaleX(1); }
.service-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.service-card .service-icon { width:52px; height:52px; background:var(--accent-light); border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.service-card .service-icon svg { color:var(--accent); }
.service-card h3 { font-size:18px; font-weight:700; color:var(--primary); margin-bottom:10px; }
.service-card p { font-size:14px; color:var(--text-muted); line-height:1.7; margin-bottom:20px; }
.service-card .card-link { font-size:14px; font-weight:600; color:var(--accent); display:flex; align-items:center; gap:6px; }
.service-card .card-link svg { transition:transform var(--transition); }
.service-card:hover .card-link svg { transform:translateX(4px); }

/* ── Reviews slider ───────────────────────────────────────────── */
.reviews { background:var(--gray-50); }
.reviews-track-wrap { overflow:hidden; position:relative; }
.reviews-track-wrap::before, .reviews-track-wrap::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none; }
.reviews-track-wrap::before { left:0; background:linear-gradient(to right, var(--gray-50), transparent); }
.reviews-track-wrap::after { right:0; background:linear-gradient(to left, var(--gray-50), transparent); }
.reviews-track { display:flex; gap:24px; transition:transform .4s ease; }
.review-card { flex:0 0 340px; background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px 24px; }
.review-stars { display:flex; gap:3px; margin-bottom:12px; color:#F59E0B; }
.review-text { font-size:14px; color:var(--text); line-height:1.7; margin-bottom:16px; font-style:italic; }
.review-author { display:flex; align-items:center; gap:12px; }
.review-avatar { width:40px; height:40px; border-radius:50%; background:var(--accent-light); display:flex; align-items:center; justify-content:center; font-size:16px; font-weight:700; color:var(--accent); }
.review-name { font-weight:600; font-size:14px; color:var(--primary); }
.review-company { font-size:12px; color:var(--text-muted); }
.reviews-nav { display:flex; justify-content:center; gap:8px; margin-top:32px; }
.reviews-dot { width:8px; height:8px; border-radius:50%; background:var(--gray-200); border:none; cursor:pointer; transition:all var(--transition); padding:0; }
.reviews-dot.active { background:var(--accent); width:24px; border-radius:4px; }
.reviews-controls { display:flex; justify-content:center; gap:12px; margin-top:16px; }
.reviews-btn { width:40px; height:40px; border-radius:50%; border:1.5px solid var(--gray-200); background:var(--white); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all var(--transition); color:var(--primary); }
.reviews-btn:hover { border-color:var(--accent); color:var(--accent); }
.google-badge { display:flex; align-items:center; gap:10px; justify-content:center; margin-top:24px; }
.google-badge svg { width:20px; height:20px; }
.google-badge span { font-size:14px; color:var(--text-muted); }
.google-badge strong { color:var(--text); }

/* ── CTA banner ───────────────────────────────────────────────── */
.cta-banner { position:relative; color:var(--white); text-align:center; padding:80px 0; }
.cta-banner::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(28,46,62,.92) 0%,rgba(13,79,114,.85) 100%); z-index:0; }
.cta-banner .container { position:relative; z-index:1; }
.cta-banner h2 { font-size:clamp(24px,3vw,38px); font-weight:800; margin-bottom:16px; }
.cta-banner p { font-size:17px; color:rgba(255,255,255,.8); margin-bottom:36px; max-width:540px; margin-left:auto; margin-right:auto; }
.cta-banner .cta-actions { display:flex; justify-content:center; flex-wrap:wrap; gap:12px; }

/* ── Why section ──────────────────────────────────────────────── */
.why { background:var(--white); }
.why-inner { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.why-list { display:flex; flex-direction:column; gap:20px; margin-top:32px; }
.why-item { display:flex; gap:16px; }
.why-check { flex-shrink:0; width:28px; height:28px; background:var(--accent-light); border-radius:50%; display:flex; align-items:center; justify-content:center; margin-top:2px; }
.why-check svg { color:var(--accent); }
.why-item h4 { font-size:15px; font-weight:700; color:var(--primary); margin-bottom:4px; }
.why-item p { font-size:14px; color:var(--text-muted); line-height:1.65; }
.why-visual { background:var(--gray-50); border-radius:var(--radius-lg); padding:40px; display:flex; flex-direction:column; gap:16px; }
.why-stat { background:var(--white); border-radius:var(--radius); padding:20px 24px; border:1px solid var(--border); }
.why-stat-num { font-size:36px; font-weight:800; color:var(--accent); line-height:1; margin-bottom:6px; }
.why-stat-label { font-size:13px; color:var(--text-muted); font-weight:500; }

/* ── Page hero (sub-pages) ────────────────────────────────────── */
.page-hero { background:linear-gradient(135deg, var(--primary) 0%, #0d4f72 100%); color:var(--white); padding:72px 0 56px; }
.page-hero .breadcrumb { display:flex; gap:8px; align-items:center; font-size:13px; color:rgba(255,255,255,.6); margin-bottom:16px; }
.page-hero .breadcrumb a { color:rgba(255,255,255,.6); }
.page-hero .breadcrumb a:hover { color:var(--white); }
.page-hero .breadcrumb svg { flex-shrink:0; }
.page-hero h1 { font-size:clamp(28px,4vw,46px); font-weight:800; line-height:1.2; margin-bottom:16px; }
.page-hero p { font-size:18px; color:rgba(255,255,255,.8); max-width:560px; line-height:1.7; }

/* ── Feature list ─────────────────────────────────────────────── */
.feature-list { display:flex; flex-direction:column; gap:12px; }
.feature-list li { display:flex; align-items:flex-start; gap:12px; font-size:15px; color:var(--text); }
.feature-list li::before { content:''; flex-shrink:0; width:20px; height:20px; background:url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%2300AEEF' fill-opacity='.15'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%2300AEEF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain; margin-top:2px; }

/* ── Two col ──────────────────────────────────────────────────── */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.two-col.reverse { direction:rtl; }
.two-col.reverse > * { direction:ltr; }

/* ── Detail cards ─────────────────────────────────────────────── */
.detail-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); gap:20px; }
.detail-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px 24px; }
.detail-card .dc-icon { width:44px; height:44px; background:var(--accent-light); border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.detail-card .dc-icon svg { color:var(--accent); }
.detail-card h4 { font-size:15px; font-weight:700; color:var(--primary); margin-bottom:8px; }
.detail-card p { font-size:13px; color:var(--text-muted); line-height:1.65; }

/* ── Contact page ─────────────────────────────────────────────── */
.contact-layout { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.contact-form-wrap { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:40px; box-shadow:var(--shadow-sm); }
.contact-form-wrap h2 { font-size:24px; font-weight:700; color:var(--primary); margin-bottom:8px; }
.contact-form-wrap .form-sub { font-size:14px; color:var(--text-muted); margin-bottom:28px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:13px; font-weight:600; color:var(--primary); margin-bottom:7px; text-transform:uppercase; letter-spacing:.4px; }
.form-group input, .form-group select, .form-group textarea {
    width:100%; background:var(--gray-50); border:1.5px solid var(--gray-200);
    border-radius:8px; color:var(--text); padding:11px 14px; font-size:14px;
    font-family:var(--font); transition:border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline:none; border-color:var(--accent); background:var(--white);
    box-shadow:0 0 0 3px rgba(0,174,239,.1);
}
.form-group textarea { resize:vertical; min-height:120px; }
.form-group select { appearance:none; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 7l3 3 3-3' stroke='%235A6F80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 12px center; background-size:20px; }
.form-alert { display:none; padding:14px 16px; border-radius:8px; font-size:14px; margin-bottom:16px; }
.form-alert.success { display:block; background:rgba(22,163,74,.1); border:1px solid rgba(22,163,74,.3); color:#15803d; }
.form-alert.error { display:block; background:rgba(220,38,38,.08); border:1px solid rgba(220,38,38,.2); color:#dc2626; }

.contact-info-col { display:flex; flex-direction:column; gap:24px; }
.contact-info-card { background:var(--gray-50); border-radius:var(--radius-lg); padding:28px 24px; }
.contact-info-card h3 { font-size:17px; font-weight:700; color:var(--primary); margin-bottom:16px; display:flex; align-items:center; gap:10px; }
.contact-info-card h3 svg { color:var(--accent); }
.contact-detail-row { display:flex; gap:12px; align-items:flex-start; padding:10px 0; border-bottom:1px solid var(--border); font-size:14px; }
.contact-detail-row:last-child { border-bottom:none; }
.contact-detail-row svg { flex-shrink:0; color:var(--accent); margin-top:2px; }
.contact-detail-row a { color:var(--accent); font-weight:500; }
.contact-detail-row a:hover { color:var(--accent-dark); }

.map-embed { border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); margin-top:24px; }
.map-embed iframe { display:block; width:100%; height:280px; border:none; }

/* ── Admin panel ──────────────────────────────────────────────── */
.admin-body { background:var(--gray-50); min-height:100vh; font-family:var(--font); color:var(--text); }
.admin-wrap { max-width:800px; margin:0 auto; padding:40px 24px; }
.admin-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:32px; flex-wrap:wrap; gap:12px; }
.admin-header h1 { font-size:22px; font-weight:800; color:var(--primary); }
.admin-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px; margin-bottom:24px; }
.admin-card h2 { font-size:16px; font-weight:700; color:var(--primary); margin-bottom:20px; padding-bottom:12px; border-bottom:1px solid var(--border); }
.admin-fg { margin-bottom:16px; }
.admin-fg label { display:block; font-size:12px; font-weight:700; color:var(--gray-600); text-transform:uppercase; letter-spacing:.5px; margin-bottom:6px; }
.admin-fg input, .admin-fg select { width:100%; background:var(--gray-50); border:1.5px solid var(--gray-200); border-radius:8px; padding:10px 13px; font-size:14px; font-family:var(--font); color:var(--text); }
.admin-fg input:focus, .admin-fg select:focus { outline:none; border-color:var(--accent); background:var(--white); }
.admin-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.admin-actions { display:flex; gap:10px; flex-wrap:wrap; margin-top:8px; }
.btn-admin { display:inline-flex; align-items:center; gap:6px; padding:10px 20px; border-radius:8px; font-size:13px; font-weight:600; cursor:pointer; transition:all var(--transition); border:none; }
.btn-save { background:var(--accent); color:var(--white); }
.btn-save:hover { background:var(--accent-dark); }
.btn-test { background:var(--gray-100); color:var(--primary); border:1px solid var(--gray-200); }
.btn-test:hover { background:var(--gray-200); }
.btn-danger { background:none; color:#dc2626; border:1px solid #fca5a5; }
.btn-danger:hover { background:#fef2f2; }
.admin-alert { padding:12px 16px; border-radius:8px; font-size:13px; margin-bottom:16px; }
.admin-alert.ok { background:rgba(22,163,74,.1); border:1px solid rgba(22,163,74,.3); color:#15803d; }
.admin-alert.err { background:rgba(220,38,38,.08); border:1px solid rgba(220,38,38,.2); color:#dc2626; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer { background:var(--primary); color:rgba(255,255,255,.8); padding:64px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; padding-bottom:48px; }
.footer-logo { font-size:22px; font-weight:800; }
.footer-tagline { font-size:12px; color:rgba(255,255,255,.4); text-transform:uppercase; letter-spacing:1.5px; margin-top:4px; margin-bottom:12px; }
.footer-desc { font-size:14px; color:rgba(255,255,255,.6); line-height:1.7; max-width:240px; }
.footer-social { display:flex; gap:8px; margin-top:20px; }
.footer-social a { width:36px; height:36px; background:rgba(255,255,255,.08); border-radius:8px; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.6); transition:all var(--transition); }
.footer-social a:hover { background:var(--accent); color:var(--white); }
.footer-col h4 { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:rgba(255,255,255,.4); margin-bottom:16px; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul a { font-size:14px; color:rgba(255,255,255,.65); transition:color var(--transition); }
.footer-col ul a:hover { color:var(--accent); }
.footer-col address p { display:flex; gap:10px; align-items:flex-start; font-size:14px; color:rgba(255,255,255,.65); margin-bottom:12px; }
.footer-col address svg { flex-shrink:0; color:var(--accent); margin-top:2px; }
.footer-col address a { color:rgba(255,255,255,.65); }
.footer-col address a:hover { color:var(--accent); }
.hours-time { font-size:22px; font-weight:700; color:var(--white); margin:4px 0; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:20px 0; }
.footer-bottom .container { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.footer-bottom p { font-size:13px; color:rgba(255,255,255,.4); }
.footer-bottom a { color:rgba(255,255,255,.4); transition:color var(--transition); }
.footer-bottom a:hover { color:var(--accent); }

/* ── WhatsApp floating ────────────────────────────────────────── */
.whatsapp-btn { position:fixed; bottom:28px; right:28px; z-index:200; width:58px; height:58px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--white); box-shadow:0 4px 20px rgba(37,211,102,.4); transition:all var(--transition); }
.whatsapp-btn:hover { background:#1ebe57; transform:scale(1.1); }
.whatsapp-tooltip { position:absolute; right:72px; background:var(--primary); color:var(--white); white-space:nowrap; padding:6px 12px; border-radius:6px; font-size:13px; font-weight:500; opacity:0; pointer-events:none; transition:opacity var(--transition); }
.whatsapp-tooltip::after { content:''; position:absolute; right:-6px; top:50%; transform:translateY(-50%); border:6px solid transparent; border-right:none; border-left-color:var(--primary); }
.whatsapp-btn:hover .whatsapp-tooltip { opacity:1; }

/* ── Pricing/no-pricing note ──────────────────────────────────── */
.pricing-note { background:var(--accent-light); border:1px solid rgba(0,174,239,.2); border-radius:var(--radius); padding:20px 24px; display:flex; gap:14px; align-items:flex-start; }
.pricing-note svg { flex-shrink:0; color:var(--accent); margin-top:2px; }
.pricing-note p { font-size:14px; color:var(--primary); line-height:1.65; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns:1fr 1fr; }
    .hero-inner, .why-inner, .two-col { grid-template-columns:1fr; gap:40px; }
    .hero-visual { display:none; }
}
@media (max-width: 768px) {
    :root { --header-h:64px; }
    section { padding:56px 0; }
    .main-nav { position:fixed; top:var(--header-h); left:0; right:0; bottom:0; background:var(--white); padding:24px; transform:translateX(100%); transition:transform .3s ease; overflow-y:auto; }
    .main-nav.open { transform:translateX(0); }
    .main-nav ul { flex-direction:column; gap:4px; }
    .main-nav a { padding:14px 16px; font-size:16px; }
    .nav-toggle { display:flex; }
    .header-cta { display:none; }
    .contact-layout, .form-row { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr; gap:32px; }
    .two-col.reverse { direction:ltr; }
    .admin-grid-2 { grid-template-columns:1fr; }
}
@media (max-width: 480px) {
    .container { padding:0 16px; }
    .btn-lg { padding:13px 24px; }
    .cta-banner { padding:56px 0; }
}

/* Typewriter cursor */
.hero-cursor { display:inline-block; width:3px; height:1em; background:var(--accent); vertical-align:middle; margin-left:4px; animation:blink .8s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── Hero slideshow ───────────────────────────────────────────── */
.hero { position:relative; overflow:hidden; padding:0; min-height:600px; display:flex; align-items:center; }
.hero-slides { position:absolute; inset:0; }
.hero-slide { position:absolute; inset:0; opacity:0; transition:opacity 1s ease; }
.hero-slide.active { opacity:1; }
/* Hero slides met stock foto achtergronden — Unsplash (aanschaffen bij lancering) */
.hero-slide-1 {
    background:
        linear-gradient(135deg, rgba(28,46,62,.88) 0%, rgba(13,79,114,.72) 55%, rgba(26,58,80,.82) 100%),
        url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-slide-2 {
    background:
        linear-gradient(135deg, rgba(10,30,55,.9) 0%, rgba(28,46,62,.8) 50%, rgba(10,70,70,.85) 100%),
        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-slide-3 {
    background:
        linear-gradient(135deg, rgba(22,32,48,.9) 0%, rgba(13,79,114,.78) 40%, rgba(28,46,62,.88) 100%),
        url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-slide-bg {
    position:absolute; inset:0; overflow:hidden;
}
.hero-slide-bg::before {
    content:''; position:absolute;
    width:600px; height:600px; border-radius:50%;
    background:var(--accent); opacity:.06;
    right:-100px; top:-150px;
}
.hero-slide-bg::after {
    content:''; position:absolute;
    width:400px; height:400px; border-radius:50%;
    background:var(--accent); opacity:.04;
    left:-80px; bottom:-100px;
}
.hero-content-wrap { position:relative; z-index:2; padding:100px 0 80px; width:100%; }
.hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.hero-slide-counter { display:flex; gap:8px; margin-bottom:28px; }
.hero-slide-dot { width:28px; height:3px; border-radius:2px; background:rgba(255,255,255,.25); border:none; cursor:pointer; transition:all .3s; padding:0; }
.hero-slide-dot.active { background:var(--accent); width:40px; }


/* ── Ticker strip ─────────────────────────────────────────────── */
.ticker-strip { background:var(--accent); padding:12px 0; overflow:hidden; }
.ticker-inner { display:flex; gap:0; white-space:nowrap; animation:ticker 30s linear infinite; }
.ticker-item { display:inline-flex; align-items:center; gap:10px; padding:0 36px; font-size:13px; font-weight:600; color:var(--white); flex-shrink:0; }
.ticker-item svg { flex-shrink:0; opacity:.8; }
.ticker-sep { opacity:.4; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-strip:hover .ticker-inner { animation-play-state:paused; }

/* ── Services slideshow ───────────────────────────────────────── */
.services-carousel-wrap { position:relative; }
.services-tabs { display:flex; gap:4px; margin-bottom:32px; flex-wrap:wrap; }
.service-tab { padding:9px 18px; border-radius:8px; font-size:13px; font-weight:600; border:1.5px solid var(--border); background:var(--white); color:var(--text-muted); cursor:pointer; transition:all var(--transition); }
.service-tab:hover { border-color:var(--accent); color:var(--accent); }
.service-tab.active { background:var(--accent); color:var(--white); border-color:var(--accent); }
.service-panel { display:none; animation:fadeIn .3s ease; }
.service-panel.active { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.service-panel-visual { background:var(--gray-50); border-radius:var(--radius-lg); padding:36px; display:flex; flex-direction:column; gap:12px; }
.service-panel-stat { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:16px 20px; display:flex; align-items:center; gap:14px; }
.service-panel-stat-icon { width:40px; height:40px; background:var(--accent-light); border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.service-panel-stat-icon svg { color:var(--accent); }
.service-panel-stat strong { font-size:20px; font-weight:800; color:var(--primary); display:block; line-height:1; }
.service-panel-stat span { font-size:12px; color:var(--text-muted); }

/* ── Stats counter ────────────────────────────────────────────── */
.stats-band { background:var(--primary); padding:60px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; text-align:center; }
.stat-item { color:var(--white); }
.stat-num { font-size:clamp(36px,4vw,52px); font-weight:800; color:var(--accent); line-height:1; margin-bottom:8px; }
.stat-label { font-size:14px; color:rgba(255,255,255,.65); }

/* ── Tech stack marquee ───────────────────────────────────────── */
.tech-strip { background:var(--white); padding:48px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); overflow:hidden; }
.tech-marquee { display:flex; gap:0; will-change:transform; }
.tech-item { display:inline-flex; align-items:center; gap:10px; padding:0 40px; flex-shrink:0; opacity:.5; transition:opacity var(--transition); filter:grayscale(1); }
.tech-item:hover { opacity:1; filter:none; }
.tech-name { font-size:15px; font-weight:700; color:var(--primary); white-space:nowrap; }
.tech-item svg { color:var(--accent); }

/* ── Process steps ────────────────────────────────────────────── */
.process { background:var(--gray-50); }
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; position:relative; }
.steps-grid::before { content:''; position:absolute; top:36px; left:calc(33.33% - 12px); right:calc(33.33% - 12px); height:2px; background:var(--gray-200); z-index:0; }
.step-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px 24px; text-align:center; position:relative; z-index:1; transition:all var(--transition); }
.step-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
.step-num { width:52px; height:52px; background:var(--accent); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; font-size:20px; font-weight:800; color:var(--white); box-shadow:0 4px 16px rgba(0,174,239,.35); }
.step-card h3 { font-size:17px; font-weight:700; color:var(--primary); margin-bottom:10px; }
.step-card p { font-size:14px; color:var(--text-muted); line-height:1.7; }

@media (max-width:768px) {
    .steps-grid { grid-template-columns:1fr; }
    .steps-grid::before { display:none; }
    .stats-grid { grid-template-columns:repeat(2,1fr); }
    .service-panel.active { grid-template-columns:1fr; }
    .hero-inner { grid-template-columns:1fr; }
    .hero-visual { display:none; }
    /* Foto sectie op mobiel: stack */
    .ite-photo-section { grid-template-columns:1fr !important; }
    .ite-photo-section .photo-img { min-height:240px; }
}
@media (max-width:480px) {
    .stats-grid { grid-template-columns:1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   HOVER INTERACTIE — alle kaarten, blokken en elementen
═══════════════════════════════════════════════════════════════ */

/* ── USP kaarten (al actief, versterkt) ───────────────────────── */
.usp-card {
    transition: all .25s cubic-bezier(.22,.68,0,1.2);
}
.usp-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--accent);
    box-shadow: 0 12px 36px rgba(0,174,239,.14);
}
.usp-card:hover .usp-icon {
    background: var(--accent);
    transform: scale(1.15) rotate(-6deg);
    transition: all .25s ease;
}
.usp-card:hover .usp-icon svg {
    color: var(--white);
}

/* ── Service kaarten (al actief, versterkt) ───────────────────── */
.service-card {
    transition: all .25s cubic-bezier(.22,.68,0,1.2);
}
.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    border-color: var(--accent);
}
.service-card:hover .service-icon {
    background: var(--accent);
    transform: scale(1.12) rotate(-5deg);
    transition: all .25s ease;
}
.service-card:hover .service-icon svg {
    color: var(--white);
}

/* ── Detail kaarten (waren stil) ──────────────────────────────── */
.detail-card {
    transition: all .25s cubic-bezier(.22,.68,0,1.2);
    border-left: 3px solid transparent;
}
.detail-card:hover {
    transform: translateY(-7px);
    border-left-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
    background: var(--white);
}
.detail-card:hover .dc-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(-5deg);
    transition: all .25s ease;
}
.detail-card:hover .dc-icon svg {
    color: var(--white);
}

/* ── Review kaarten (waren stil) ─────────────────────────────── */
.review-card {
    transition: all .25s cubic-bezier(.22,.68,0,1.2);
}
.review-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 16px 40px rgba(0,0,0,.11);
    border-color: var(--accent);
}
.review-card:hover .review-avatar {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
    transition: all .25s ease;
}
.review-card:hover .review-stars svg {
    animation: starPop .2s ease forwards;
}
.review-card:hover .review-stars svg:nth-child(1) { animation-delay: .00s; }
.review-card:hover .review-stars svg:nth-child(2) { animation-delay: .04s; }
.review-card:hover .review-stars svg:nth-child(3) { animation-delay: .08s; }
.review-card:hover .review-stars svg:nth-child(4) { animation-delay: .12s; }
.review-card:hover .review-stars svg:nth-child(5) { animation-delay: .16s; }
@keyframes starPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.4); }
    100% { transform: scale(1.1); }
}

/* ── Hero kaarten (sidebar rechts in hero) ────────────────────── */
.hero-card {
    transition: all .3s cubic-bezier(.22,.68,0,1.2);
    cursor: default;
}
.hero-card:hover {
    transform: translateX(8px) scale(1.02);
    background: rgba(255,255,255,.14);
    border-color: rgba(0,174,239,.5);
    box-shadow: 0 8px 32px rgba(0,0,0,.2), 0 0 0 1px rgba(0,174,239,.2);
}
.hero-card:hover .hero-card-icon {
    transform: scale(1.15) rotate(-8deg);
    transition: transform .25s ease;
}

/* ── Why-statistieken (waren stil) ───────────────────────────── */
.why-stat {
    transition: all .25s cubic-bezier(.22,.68,0,1.2);
    border-left: 3px solid transparent;
}
.why-stat:hover {
    transform: translateX(8px);
    border-left-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.why-stat:hover .why-stat-num {
    color: var(--accent-dark);
}

/* ── Stap kaarten (al actief, versterkt) ─────────────────────── */
.step-card {
    transition: all .25s cubic-bezier(.22,.68,0,1.2);
}
.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0,0,0,.12);
    border-color: var(--accent);
}
.step-card:hover .step-num {
    transform: scale(1.18) rotate(6deg);
    transition: transform .25s cubic-bezier(.22,.68,0,1.2);
    box-shadow: 0 6px 24px rgba(0,174,239,.5);
}

/* ── Service panel statistieken (waren stil) ──────────────────── */
.service-panel-stat {
    transition: all .25s cubic-bezier(.22,.68,0,1.2);
}
.service-panel-stat:hover {
    transform: translateX(6px);
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}
.service-panel-stat:hover .service-panel-stat-icon {
    background: var(--accent);
    transform: scale(1.1);
    transition: all .2s ease;
}
.service-panel-stat:hover .service-panel-stat-icon svg {
    color: var(--white);
}

/* ── Contact info kaarten (waren stil) ───────────────────────── */
.contact-info-card {
    transition: all .25s cubic-bezier(.22,.68,0,1.2);
    border: 1px solid transparent;
}
.contact-info-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0,174,239,.1);
    background: var(--white);
}

/* ── Stat-band items ─────────────────────────────────────────── */
.stat-item {
    transition: transform .25s cubic-bezier(.22,.68,0,1.2);
    cursor: default;
}
.stat-item:hover {
    transform: translateY(-6px);
}
.stat-item:hover .stat-num {
    text-shadow: 0 0 30px rgba(0,174,239,.5);
}

/* ── Service tabs ────────────────────────────────────────────── */
.service-tab {
    transition: all .2s cubic-bezier(.22,.68,0,1.2);
}
.service-tab:hover:not(.active) {
    transform: translateY(-2px);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 4px 12px rgba(0,174,239,.15);
}
.service-tab.active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,174,239,.3);
}

/* ── Navigation links ────────────────────────────────────────── */
.main-nav a {
    transition: all .18s ease;
}
.main-nav a:hover {
    transform: translateY(-1px);
}

/* ── Footer nav links ────────────────────────────────────────── */
.footer-col ul a {
    display: inline-block;
    transition: all .18s ease;
}
.footer-col ul a:hover {
    transform: translateX(5px);
    color: var(--accent);
}

/* ── Footer social iconen ────────────────────────────────────── */
.footer-social a {
    transition: all .25s cubic-bezier(.22,.68,0,1.2);
}
.footer-social a:hover {
    transform: translateY(-4px) rotate(-5deg) scale(1.15);
    background: var(--accent);
    color: var(--white);
}

/* ── Reviews knoppen ─────────────────────────────────────────── */
.reviews-btn {
    transition: all .2s cubic-bezier(.22,.68,0,1.2);
}
.reviews-btn:hover {
    transform: scale(1.12);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 4px 16px rgba(0,174,239,.2);
}

/* ── Knoppen (versterkt) ─────────────────────────────────────── */
.btn {
    transition: all .2s cubic-bezier(.22,.68,0,1.2);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0,174,239,.4);
}
.btn-outline-white:hover {
    transform: translateY(-2px);
}

/* ── Logo hover ──────────────────────────────────────────────── */
.logo {
    transition: transform .25s cubic-bezier(.22,.68,0,1.2);
}
.logo:hover {
    transform: scale(1.04);
}

/* ── WhatsApp knop (al actief, versterkt) ────────────────────── */
.whatsapp-btn {
    transition: all .25s cubic-bezier(.22,.68,0,1.2);
}
.whatsapp-btn:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(37,211,102,.55);
}

/* ══════════════════════════════════════════════════════════════
   MOBILE FIXES — index pagina
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Hero: minder padding, tekst iets kleiner */
    .hero-content-wrap { padding: 60px 0 48px; }
    .hero h1 { font-size: clamp(28px, 7vw, 40px); }
    .hero-sub { font-size: 16px; margin-bottom: 28px; }
    .hero-badge { font-size: 12px; padding: 5px 12px; margin-bottom: 14px; }
    .hero-trust { margin-top: 28px; gap: 12px; }
    .hero-trust-item { font-size: 13px; }
    .hero-slide-counter { margin-bottom: 18px; }

    /* Hero acties: knoppen op volledige breedte stapelen */
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }

    /* Stats band: iets kleinere cijfers */
    .stat-num { font-size: clamp(28px, 7vw, 40px); }
    .stat-label { font-size: 12px; }
    .stats-band { padding: 40px 0; }

    /* Service tabs: scrollbaar horizontaal i.p.v. wrappen */
    .services-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; scrollbar-width: none; }
    .services-tabs::-webkit-scrollbar { display: none; }
    .service-tab { white-space: nowrap; flex-shrink: 0; }

    /* Foto sectie: kolommen stapelen */
    .ite-photo-section { grid-template-columns: 1fr !important; }
    .ite-photo-section > div:first-child { min-height: 240px; }

    /* Stappen sectie: minder padding */
    .process { }
    .steps-grid { gap: 16px; }

    /* Reviews: kaart volledige breedte */
    .review-card { flex: 0 0 calc(100vw - 48px); }

    /* Footer */
    .footer-grid { gap: 24px; }
    .footer-desc { max-width: 100%; }

    /* Sectie spacing */
    section { padding: 52px 0; }
    .section-header { margin-bottom: 36px; }
    .section-title { font-size: clamp(22px, 6vw, 32px); }

    /* FAQ */
    .faq-section { padding: 52px 0; }
    .faq-question { font-size: 14px; padding: 16px 18px; }
    .faq-answer { padding: 0 18px 16px; }
}

@media (max-width: 480px) {

    /* Hero nog compacter op kleine telefoons */
    .hero-content-wrap { padding: 44px 0 36px; }
    .hero h1 { font-size: clamp(24px, 8vw, 32px); }
    .hero-sub { font-size: 15px; }

    /* Stat band: 2-koloms blijven maar kleiner */
    .stats-grid { gap: 20px; }
    .stat-num { font-size: 32px; }

    /* Knoppen niet te hoog */
    .btn-lg { padding: 13px 20px; font-size: 15px; }

    /* Ticker: kleinere tekst */
    .ticker-item { font-size: 12px; padding: 0 20px; }

    /* Containers iets meer ademruimte */
    .contact-form-wrap { padding: 24px 20px; }
}

/* ── FAQ sectie ──────────────────────────────────────────────── */
.faq-section {
    padding: 80px 0;
    background: var(--gray-50);
}
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-item[open] {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,174,239,.08);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    gap: 16px;
    transition: background var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}
.faq-question:hover {
    background: var(--accent-light);
}
.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 14px;
}
