/* === DIGITAL PLANET – STYLE.CSS === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --dp-purple: #6C3CE1;
  --dp-purple-dark: #4A24B0;
  --dp-purple-light: #EDE8FB;
  --dp-text: #111;
  --dp-muted: #666;
  --dp-border: #e4e0f0;
  --dp-off: #f8f7fc;
  --dp-white: #fff;
  --dp-salt: #0099CC;
  --dp-sunrise: #E05A00;
}
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--dp-white); color: var(--dp-text); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top:0; left:0; right:0; z-index:100; display:flex; align-items:center; justify-content:space-between; padding:0.85rem 3rem; background:rgba(255,255,255,0.97); backdrop-filter:blur(12px); border-bottom:1px solid var(--dp-border); }
.logo-wrap { display:flex; align-items:center; gap:0.7rem; text-decoration:none; }
.logo-box { background:var(--dp-purple); padding:0.4rem 0.7rem; border-radius:4px; }
.logo-text { font-family:'Libre Baskerville',serif; font-weight:700; font-size:0.85rem; color:#fff; line-height:1.3; display:block; }
.logo-text.small { font-size:0.75rem; }
.logo-box.small { padding:0.3rem 0.55rem; }
.logo-since { font-size:0.62rem; font-weight:500; letter-spacing:0.12em; color:var(--dp-muted); text-transform:uppercase; }
.nav-links { display:flex; gap:2rem; list-style:none; }
.nav-links a { color:var(--dp-muted); text-decoration:none; font-size:0.83rem; font-weight:400; transition:color 0.2s; }
.nav-links a:hover, .nav-links a.active { color:var(--dp-purple); font-weight:500; }
.nav-cta { background:var(--dp-purple); color:#fff; padding:0.5rem 1.2rem; border-radius:2rem; font-size:0.8rem; font-weight:500; text-decoration:none; transition:background 0.2s; white-space:nowrap; }
.nav-cta:hover { background:var(--dp-purple-dark); }
.burger { display:none; background:none; border:none; font-size:1.3rem; cursor:pointer; color:var(--dp-text); }
.mobile-menu { display:none; position:fixed; top:58px; left:0; right:0; background:#fff; border-bottom:1px solid var(--dp-border); z-index:99; flex-direction:column; padding:1rem 2rem; gap:0.75rem; }
.mobile-menu.open { display:flex; }
.mobile-menu a { color:var(--dp-text); text-decoration:none; font-size:0.95rem; padding:0.45rem 0; border-bottom:1px solid var(--dp-border); }

/* LAYOUT */
.container { max-width:1140px; margin:0 auto; padding:0 2rem; }
.section { padding:4.5rem 0; }
.section-alt { background:var(--dp-off); }

/* TYPOGRAPHY */
.eyebrow { font-size:0.7rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--dp-purple); font-weight:600; display:block; margin-bottom:0.5rem; }
h1.page-title { font-family:'Libre Baskerville',serif; font-size:clamp(2rem,4vw,3rem); font-weight:700; line-height:1.15; margin-bottom:0.75rem; }
.page-sub { font-size:0.97rem; color:var(--dp-muted); max-width:560px; line-height:1.75; }
.section-title { font-family:'Libre Baskerville',serif; font-size:clamp(1.6rem,3vw,2.2rem); font-weight:700; line-height:1.2; margin-bottom:0.6rem; }
.section-sub { font-size:0.9rem; color:var(--dp-muted); max-width:520px; line-height:1.7; margin-bottom:2.5rem; }

/* BUTTONS */
.btn-primary { background:var(--dp-purple); color:#fff; padding:0.78rem 1.7rem; border-radius:2rem; font-size:0.86rem; font-weight:500; text-decoration:none; display:inline-block; transition:background 0.2s,transform 0.15s; border:none; cursor:pointer; font-family:'Outfit',sans-serif; }
.btn-primary:hover { background:var(--dp-purple-dark); transform:translateY(-1px); }
.btn-outline { border:1.5px solid var(--dp-purple); color:var(--dp-purple); padding:0.78rem 1.7rem; border-radius:2rem; font-size:0.86rem; font-weight:500; text-decoration:none; display:inline-block; transition:all 0.2s; background:transparent; cursor:pointer; font-family:'Outfit',sans-serif; }
.btn-outline:hover { background:var(--dp-purple-light); }
.btn-white { background:#fff; color:var(--dp-purple); padding:0.78rem 1.7rem; border-radius:2rem; font-size:0.86rem; font-weight:600; text-decoration:none; display:inline-block; transition:opacity 0.2s; border:none; cursor:pointer; }
.btn-white:hover { opacity:0.9; }

/* PAGE HERO */
.page-hero { background:var(--dp-off); padding:7.5rem 0 3rem; border-bottom:1px solid var(--dp-border); }

/* HERO (index) */
.hero { padding:8.5rem 0 4rem; }
.hero-inner { display:grid; grid-template-columns:1.1fr 0.9fr; gap:4rem; align-items:center; }
.hero-tag { display:inline-block; background:var(--dp-purple-light); color:var(--dp-purple); padding:0.3rem 1rem; border-radius:2rem; font-size:0.7rem; font-weight:500; letter-spacing:0.06em; margin-bottom:1.25rem; }
.hero h1 { font-family:'Libre Baskerville',serif; font-size:clamp(2.4rem,4.5vw,3.8rem); font-weight:700; line-height:1.1; letter-spacing:-0.02em; margin-bottom:1.2rem; }
.hero h1 em { color:var(--dp-purple); font-style:italic; }
.hero-sub { font-size:1rem; color:var(--dp-muted); line-height:1.75; margin-bottom:2rem; max-width:440px; }
.hero-btns { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:2.5rem; }
.hero-remote { display:flex; align-items:center; gap:0.75rem; padding:0.9rem 1.25rem; background:var(--dp-purple-light); border-radius:10px; border:1px solid rgba(108,60,225,0.15); max-width:420px; }
.hero-remote-icon { width:36px; height:36px; background:var(--dp-purple); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hero-remote-icon svg { width:18px; height:18px; stroke:#fff; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.hero-remote p { font-size:0.78rem; color:var(--dp-purple); line-height:1.5; }
.hero-remote strong { font-weight:600; }
.hero-carriers { display:flex; flex-direction:column; gap:1rem; }
.carrier-card { background:#fff; border:1px solid var(--dp-border); border-radius:12px; padding:1.4rem 1.75rem; display:flex; align-items:center; justify-content:space-between; transition:border-color 0.2s; }
.carrier-card:hover { border-color:var(--dp-purple); }
.carrier-card.salt-c { border-left:3px solid var(--dp-salt); }
.carrier-card.sunrise-c { border-left:3px solid var(--dp-sunrise); }
.carrier-name { font-family:'Libre Baskerville',serif; font-size:1.2rem; font-weight:700; }
.carrier-name.salt-c { color:var(--dp-salt); }
.carrier-name.sunrise-c { color:var(--dp-sunrise); }
.carrier-desc { font-size:0.75rem; color:var(--dp-muted); margin-top:0.15rem; }
.carrier-price { font-family:'Libre Baskerville',serif; font-size:1.4rem; font-weight:700; }
.carrier-price span { font-size:0.7rem; font-weight:400; color:var(--dp-muted); font-family:'Outfit',sans-serif; }

/* REMOTE BANNER */
.remote-banner { background:var(--dp-purple); padding:3.5rem 0; }
.remote-inner { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.remote-inner h2 { font-family:'Libre Baskerville',serif; font-size:1.9rem; font-weight:700; color:#fff; margin-bottom:0.75rem; }
.remote-inner p { color:rgba(255,255,255,0.75); font-size:0.9rem; line-height:1.7; margin-bottom:1.5rem; }
.remote-steps { display:flex; flex-direction:column; gap:0.85rem; }
.remote-step { display:flex; align-items:flex-start; gap:0.9rem; }
.remote-step-num { background:rgba(255,255,255,0.2); color:#fff; width:26px; height:26px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.72rem; font-weight:700; flex-shrink:0; margin-top:0.1rem; }
.remote-step-text { font-size:0.85rem; color:rgba(255,255,255,0.85); line-height:1.5; }
.remote-step-text strong { color:#fff; font-weight:600; display:block; margin-bottom:0.1rem; }
.remote-channels { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.remote-channel { background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2); border-radius:12px; padding:1.25rem 1.5rem; }
.remote-channel h4 { font-size:0.88rem; font-weight:600; color:#fff; margin-bottom:0.3rem; }
.remote-channel p { font-size:0.78rem; color:rgba(255,255,255,0.65); line-height:1.5; }
.remote-channel a { color:#fff; font-weight:600; text-decoration:none; }

/* STRIP */
.services-strip { background:var(--dp-off); border-top:1px solid var(--dp-border); border-bottom:1px solid var(--dp-border); padding:2.5rem 0; }
.strip-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:1px; background:var(--dp-border); border:1px solid var(--dp-border); border-radius:12px; overflow:hidden; }
.strip-card { background:#fff; padding:1.5rem 1.1rem; display:flex; flex-direction:column; gap:0.5rem; text-decoration:none; color:var(--dp-text); transition:background 0.2s; }
.strip-card:hover { background:var(--dp-purple-light); }
.strip-card h3 { font-size:0.82rem; font-weight:600; }
.strip-card p { font-size:0.7rem; color:var(--dp-muted); }
.strip-card.salt h3 { color:var(--dp-salt); }
.strip-card.sunrise h3 { color:var(--dp-sunrise); }
.strip-pill { display:inline-block; font-size:0.6rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; padding:0.15rem 0.55rem; border-radius:2rem; margin-bottom:0.25rem; }
.strip-pill.purple { background:var(--dp-purple-light); color:var(--dp-purple); }
.strip-pill.salt { background:#e0f5ff; color:var(--dp-salt); }
.strip-pill.sunrise { background:#fff2e8; color:var(--dp-sunrise); }
.strip-pill.gray { background:#f0f0f0; color:#555; }

/* RENEW */
.renew-section { padding:3.5rem 0; background:var(--dp-purple); }
.renew-block { display:flex; align-items:center; justify-content:space-between; gap:3rem; flex-wrap:wrap; }
.renew-text h2 { font-family:'Libre Baskerville',serif; font-size:1.85rem; font-weight:700; color:#fff; margin-bottom:0.6rem; }
.renew-text p { color:rgba(255,255,255,0.72); font-size:0.88rem; max-width:540px; line-height:1.7; }
.renew-text strong { color:#fff; }

/* WHY */
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; }
.why-card { padding:1.75rem; border:1.5px solid var(--dp-border); border-radius:12px; transition:border-color 0.2s,transform 0.2s; }
.why-card:hover { border-color:var(--dp-purple); transform:translateY(-3px); }
.why-num { font-family:'Libre Baskerville',serif; font-size:2.2rem; font-weight:700; color:var(--dp-purple-light); margin-bottom:0.85rem; line-height:1; }
.why-card h4 { font-size:0.9rem; font-weight:600; margin-bottom:0.4rem; }
.why-card p { font-size:0.78rem; color:var(--dp-muted); line-height:1.65; }

/* INFO */
.info-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.info-card { background:#fff; border:1px solid var(--dp-border); border-radius:12px; padding:1.75rem; }
.info-card h3 { font-family:'Libre Baskerville',serif; font-size:1.1rem; font-weight:700; margin-bottom:1rem; }
.hours { display:flex; flex-direction:column; gap:0.45rem; }
.hour-row { display:flex; justify-content:space-between; font-size:0.83rem; padding:0.3rem 0; border-bottom:1px solid var(--dp-border); }
.hour-row:last-child { border:none; }
.hour-row.closed span:last-child { color:#ccc; }
.addr-big { font-size:0.95rem; line-height:1.7; }
.phone-big { display:block; font-family:'Libre Baskerville',serif; font-size:1.4rem; font-weight:700; color:var(--dp-purple); text-decoration:none; margin-bottom:0.5rem; }
.email-link { color:var(--dp-muted); text-decoration:none; font-size:0.88rem; display:block; }
.email-link:hover { color:var(--dp-purple); }

/* TABS */
.tabs { display:flex; gap:0.3rem; background:var(--dp-off); border:1px solid var(--dp-border); border-radius:2rem; padding:0.28rem; width:fit-content; }
.tab { padding:0.45rem 1.3rem; border-radius:2rem; font-size:0.82rem; font-weight:500; cursor:pointer; border:none; color:var(--dp-muted); background:transparent; transition:all 0.2s; font-family:'Outfit',sans-serif; }
.tab.active { background:var(--dp-purple); color:#fff; }

/* ABO */
.tabs-wrap { display:flex; align-items:center; gap:2rem; margin-bottom:2rem; flex-wrap:wrap; }
.tabs-note { font-size:0.8rem; color:var(--dp-muted); }
.tabs-note a { color:var(--dp-purple); text-decoration:none; }
.operator-intro { display:flex; align-items:center; gap:1.25rem; padding:1.25rem 1.5rem; background:var(--dp-off); border-radius:10px; margin-bottom:1.75rem; border:1px solid var(--dp-border); }
.op-badge { padding:0.35rem 1rem; border-radius:2rem; font-size:0.82rem; font-weight:700; }
.salt-badge-lg { background:#e0f5ff; color:var(--dp-salt); }
.sunrise-badge-lg { background:#fff2e8; color:var(--dp-sunrise); }
.operator-intro p { font-size:0.84rem; color:var(--dp-muted); line-height:1.6; }
.abo-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.15rem; margin-bottom:2.5rem; }
.abo-card { background:#fff; border:1.5px solid var(--dp-border); border-radius:14px; padding:1.75rem; position:relative; transition:all 0.2s; }
.abo-card:hover { border-color:var(--dp-purple); transform:translateY(-3px); box-shadow:0 8px 28px rgba(108,60,225,0.09); }
.abo-card.featured { border-color:var(--dp-purple); border-width:2px; }
.pop-badge { position:absolute; top:-0.6rem; left:50%; transform:translateX(-50%); background:var(--dp-purple); color:#fff; font-size:0.6rem; font-weight:600; letter-spacing:0.1em; padding:0.22rem 0.85rem; border-radius:2rem; white-space:nowrap; text-transform:uppercase; }
.carrier-pill { display:inline-block; padding:0.22rem 0.7rem; border-radius:2rem; font-size:0.65rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:0.8rem; }
.salt-pill { background:#e0f5ff; color:var(--dp-salt); }
.sunrise-pill { background:#fff2e8; color:var(--dp-sunrise); }
.abo-card h3 { font-family:'Libre Baskerville',serif; font-size:1.15rem; font-weight:700; margin-bottom:0.25rem; }
.abo-tagline { font-size:0.77rem; color:var(--dp-muted); margin-bottom:1.15rem; }
.abo-price { display:flex; align-items:baseline; gap:0.25rem; margin-bottom:1.15rem; }
.abo-price strong { font-family:'Libre Baskerville',serif; font-size:2.4rem; font-weight:700; color:var(--dp-text); line-height:1; }
.abo-price span { font-size:0.8rem; color:var(--dp-muted); }
.abo-feats { list-style:none; margin-bottom:1.4rem; display:flex; flex-direction:column; gap:0.5rem; }
.abo-feats li { font-size:0.83rem; color:var(--dp-text); display:flex; align-items:flex-start; gap:0.55rem; padding-left:1.2rem; position:relative; }
.abo-feats li::before { content:'—'; position:absolute; left:0; font-size:0.7rem; font-weight:700; top:0.05rem; }
.salt-feat::before { color:var(--dp-salt); }
.sunrise-feat::before { color:var(--dp-sunrise); }
.abo-btn { display:block; text-align:center; padding:0.72rem; border-radius:0.7rem; font-size:0.83rem; font-weight:500; cursor:pointer; border:none; width:100%; transition:all 0.15s; text-decoration:none; font-family:'Outfit',sans-serif; }
.salt-fill-btn { background:var(--dp-salt); color:#fff; }
.salt-fill-btn:hover { background:#0080aa; }
.salt-outline-btn { background:#e0f5ff; color:var(--dp-salt); }
.salt-outline-btn:hover { background:#c5ecf7; }
.sunrise-fill-btn { background:var(--dp-sunrise); color:#fff; }
.sunrise-fill-btn:hover { background:#c04e00; }
.sunrise-outline-btn { background:#fff2e8; color:var(--dp-sunrise); }
.sunrise-outline-btn:hover { background:#fde3cc; }
.renew-block-card { background:var(--dp-purple); border-radius:14px; padding:2.75rem; display:flex; align-items:flex-start; justify-content:space-between; gap:2rem; flex-wrap:wrap; margin-top:0.5rem; }
.renew-block-card .eyebrow { color:rgba(255,255,255,0.65); }
.renew-block-card h2 { font-family:'Libre Baskerville',serif; font-size:1.75rem; font-weight:700; color:#fff; margin-bottom:0.65rem; }
.renew-block-card p { color:rgba(255,255,255,0.72); font-size:0.88rem; max-width:500px; line-height:1.7; margin-bottom:1.4rem; }
.renew-block-card strong { color:#fff; }
.renew-steps { display:flex; gap:1.25rem; flex-wrap:wrap; }
.renew-step { display:flex; align-items:flex-start; gap:0.55rem; max-width:155px; }
.renew-step span { background:rgba(255,255,255,0.2); color:#fff; width:22px; height:22px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.68rem; font-weight:700; flex-shrink:0; margin-top:0.1rem; }
.renew-step p { font-size:0.75rem; color:rgba(255,255,255,0.72); line-height:1.5; }
.price-note { font-size:0.73rem; color:var(--dp-muted); margin-top:1.75rem; font-style:italic; border-top:1px solid var(--dp-border); padding-top:0.85rem; }

/* PRODUITS NEUFS */
.brand-tabs { display:flex; gap:0.3rem; background:var(--dp-off); border:1px solid var(--dp-border); border-radius:2rem; padding:0.28rem; width:fit-content; margin-bottom:2rem; }
.brand-tab { padding:0.45rem 1.5rem; border-radius:2rem; font-size:0.82rem; font-weight:500; cursor:pointer; border:none; color:var(--dp-muted); background:transparent; transition:all 0.2s; font-family:'Outfit',sans-serif; }
.brand-tab.active { background:var(--dp-purple); color:#fff; }
.neufs-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.15rem; margin-bottom:2rem; }
.neuf-card { background:#fff; border:1.5px solid var(--dp-border); border-radius:14px; padding:1.75rem; position:relative; transition:all 0.2s; }
.neuf-card:hover { border-color:var(--dp-purple); transform:translateY(-2px); box-shadow:0 6px 22px rgba(108,60,225,0.08); }
.neuf-card.highlight { border-color:var(--dp-purple); }
.new-badge { position:absolute; top:-0.55rem; right:1.25rem; background:var(--dp-purple); color:#fff; font-size:0.58rem; font-weight:700; letter-spacing:0.1em; padding:0.18rem 0.7rem; border-radius:2rem; text-transform:uppercase; }
.neuf-header { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:1.1rem; }
.neuf-card h3 { font-family:'Libre Baskerville',serif; font-size:1.1rem; font-weight:700; margin-bottom:0.15rem; }
.neuf-card .model-sub { font-size:0.75rem; color:var(--dp-muted); }
.brand-pill { font-size:0.62rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; padding:0.2rem 0.65rem; border-radius:2rem; }
.apple-pill { background:#f0f0f0; color:#333; }
.samsung-pill { background:#e8f4ff; color:#1a56a0; }
.neuf-variants { display:flex; flex-direction:column; gap:0.4rem; margin-bottom:1.1rem; }
.neuf-variant { display:flex; justify-content:space-between; align-items:center; font-size:0.82rem; padding:0.4rem 0; border-bottom:1px solid var(--dp-border); }
.neuf-variant:last-child { border:none; }
.neuf-variant .storage { color:var(--dp-muted); font-size:0.77rem; }
.neuf-variant .price { font-weight:700; color:var(--dp-purple); }
.neuf-specs { display:flex; gap:0.4rem; flex-wrap:wrap; }
.spec-tag { background:var(--dp-off); border:1px solid var(--dp-border); font-size:0.65rem; color:var(--dp-muted); padding:0.18rem 0.55rem; border-radius:2rem; }
.neuf-note { background:var(--dp-off); border:1px solid var(--dp-border); border-radius:10px; padding:1.15rem 1.4rem; font-size:0.78rem; color:var(--dp-muted); line-height:1.65; }
.neuf-note strong { color:var(--dp-text); }

/* RECONDITIONNÉS */
.recon-avantages { display:grid; grid-template-columns:repeat(4,1fr); gap:1.15rem; margin-bottom:3.5rem; }
.avantage-card { background:var(--dp-off); border:1px solid var(--dp-border); border-radius:12px; padding:1.5rem 1.15rem; text-align:center; }
.av-sq { width:40px; height:40px; background:var(--dp-purple-light); border-radius:9px; display:flex; align-items:center; justify-content:center; margin:0 auto 0.85rem; }
.av-sq svg { width:20px; height:20px; stroke:var(--dp-purple); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.avantage-card h4 { font-size:0.87rem; font-weight:600; margin-bottom:0.4rem; }
.avantage-card p { font-size:0.75rem; color:var(--dp-muted); line-height:1.6; }
.product-section { margin-bottom:3.5rem; }
.product-section-title { font-family:'Libre Baskerville',serif; font-size:1.5rem; font-weight:700; margin-bottom:1.4rem; }
.product-section-title span { color:var(--dp-purple); }
.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0.9rem; }
.product-card { border:1px solid var(--dp-border); border-radius:11px; padding:1.25rem; display:flex; align-items:center; gap:0.9rem; transition:all 0.2s; background:#fff; }
.product-card:hover { border-color:var(--dp-purple); box-shadow:0 4px 18px rgba(108,60,225,0.07); }
.p-sq { width:44px; height:44px; border-radius:9px; background:var(--dp-off); border:1px solid var(--dp-border); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.p-sq svg { width:22px; height:22px; stroke:var(--dp-muted); fill:none; stroke-width:1.5; }
.product-info h4 { font-weight:600; font-size:0.88rem; margin-bottom:0.18rem; }
.product-info p { font-size:0.72rem; color:var(--dp-muted); margin-bottom:0.35rem; }
.product-price { font-weight:700; font-size:0.88rem; color:var(--dp-purple); }
.product-badge { font-size:0.62rem; font-weight:700; letter-spacing:0.06em; padding:0.22rem 0.55rem; border-radius:2rem; text-transform:uppercase; }
.badge-good { background:#fff8e1; color:#b45309; }
.badge-vgood { background:#e0f5ff; color:var(--dp-salt); }
.badge-exc { background:var(--dp-purple-light); color:var(--dp-purple); }

/* ACCESSOIRES */
.acc-categories { display:grid; grid-template-columns:repeat(3,1fr); gap:1.15rem; margin-bottom:3rem; }
.acc-cat-card { background:#fff; border:1.5px solid var(--dp-border); border-radius:14px; padding:1.75rem; transition:all 0.2s; }
.acc-cat-card:hover { border-color:var(--dp-purple); transform:translateY(-2px); }
.acc-cat-header { display:flex; align-items:center; gap:0.85rem; margin-bottom:1.1rem; }
.acc-cat-icon { width:42px; height:42px; background:var(--dp-purple-light); border-radius:9px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.acc-cat-icon svg { width:21px; height:21px; stroke:var(--dp-purple); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.acc-cat-card h3 { font-family:'Libre Baskerville',serif; font-size:1.05rem; font-weight:700; }
.acc-cat-card .acc-cat-sub { font-size:0.75rem; color:var(--dp-muted); }
.acc-items { display:flex; flex-direction:column; gap:0.45rem; }
.acc-item { display:flex; justify-content:space-between; align-items:center; font-size:0.8rem; padding:0.38rem 0; border-bottom:1px solid var(--dp-border); }
.acc-item:last-child { border:none; }
.acc-item span { color:var(--dp-muted); font-size:0.75rem; }
.acc-item strong { color:var(--dp-purple); font-weight:600; }
.acc-more { font-size:0.72rem; color:var(--dp-purple); margin-top:0.6rem; display:block; }

/* ESIM */
.esim-layout { display:grid; grid-template-columns:1fr 1fr; gap:3.5rem; align-items:center; }
.esim-explain-text h2 { font-family:'Libre Baskerville',serif; font-size:1.9rem; font-weight:700; line-height:1.2; margin-bottom:1rem; }
.esim-explain-text p { font-size:0.88rem; color:var(--dp-muted); line-height:1.7; }
.esim-visual-box { background:var(--dp-off); border:1px solid var(--dp-border); border-radius:14px; padding:2.25rem; text-align:center; }
.esim-stats { display:flex; justify-content:center; gap:2rem; margin-top:1.5rem; }
.esim-stat strong { font-family:'Libre Baskerville',serif; font-size:1.7rem; font-weight:700; color:var(--dp-purple); display:block; }
.esim-stat span { font-size:0.68rem; color:var(--dp-muted); text-transform:uppercase; letter-spacing:0.08em; }
.esim-feats { display:grid; grid-template-columns:repeat(4,1fr); gap:1.15rem; margin-bottom:3.5rem; }
.esim-feat { background:#fff; border:1px solid var(--dp-border); border-radius:12px; padding:1.5rem; transition:all 0.2s; }
.esim-feat:hover { border-color:var(--dp-purple); transform:translateY(-2px); }
.esim-feat-icon { width:38px; height:38px; background:var(--dp-purple-light); border-radius:8px; display:flex; align-items:center; justify-content:center; margin-bottom:0.85rem; }
.esim-feat-icon svg { width:19px; height:19px; stroke:var(--dp-purple); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.esim-feat h4 { font-size:0.87rem; font-weight:600; margin-bottom:0.4rem; }
.esim-feat p { font-size:0.75rem; color:var(--dp-muted); line-height:1.6; }
.pass-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin-bottom:3rem; }
.pass-card { background:#fff; border:1.5px solid var(--dp-border); border-radius:12px; padding:1.5rem; text-align:center; transition:all 0.2s; }
.pass-card:hover { border-color:var(--dp-purple); }
.pass-card.highlight { border-color:var(--dp-purple); }
.pass-card h4 { font-family:'Libre Baskerville',serif; font-size:1.05rem; font-weight:700; margin-bottom:0.3rem; }
.pass-card .pass-price { font-family:'Libre Baskerville',serif; font-size:1.8rem; font-weight:700; color:var(--dp-purple); margin:0.6rem 0; }
.pass-card .pass-price span { font-size:0.75rem; font-weight:400; color:var(--dp-muted); font-family:'Outfit',sans-serif; }
.pass-card p { font-size:0.75rem; color:var(--dp-muted); line-height:1.5; }
.dest-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0.9rem; }
.dest-card { border:1px solid var(--dp-border); border-radius:10px; padding:1.1rem; text-align:center; background:#fff; transition:all 0.2s; }
.dest-card:hover { border-color:var(--dp-purple); background:var(--dp-purple-light); }
.dest-card strong { font-size:0.83rem; font-weight:600; display:block; margin-bottom:0.15rem; }
.dest-card span { font-size:0.7rem; color:var(--dp-muted); }

/* CONTACT */
.contact-layout { display:grid; grid-template-columns:1fr 1.3fr; gap:3rem; align-items:start; margin-top:2.5rem; }
.contact-info-col { display:flex; flex-direction:column; gap:0.9rem; }
.contact-card { background:#fff; border:1px solid var(--dp-border); border-radius:12px; padding:1.4rem; display:flex; gap:0.9rem; align-items:flex-start; }
.cc-icon-sq { width:38px; height:38px; background:var(--dp-purple-light); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cc-icon-sq svg { width:18px; height:18px; stroke:var(--dp-purple); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.contact-card h4 { font-size:0.68rem; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; color:var(--dp-muted); margin-bottom:0.3rem; }
.contact-card p { font-size:0.88rem; color:var(--dp-text); line-height:1.6; }
.link-arrow { color:var(--dp-purple); text-decoration:none; font-size:0.8rem; display:inline-block; margin-top:0.4rem; }
.link-arrow:hover { text-decoration:underline; }
.big-tel { font-family:'Libre Baskerville',serif; font-size:1.7rem; font-weight:700; color:var(--dp-purple); text-decoration:none; display:block; }
.hours-table { display:flex; flex-direction:column; gap:0.35rem; width:100%; margin-top:0.4rem; }
.hours-table .hour-row { font-size:0.82rem; }
.closed-row .hour-val { color:#ccc; }
.hour-val { font-weight:500; }
.form-box { background:#fff; border:1px solid var(--dp-border); border-radius:14px; padding:2.25rem; }
.form-box h2 { font-family:'Libre Baskerville',serif; font-size:1.5rem; font-weight:700; margin-bottom:0.35rem; }
.form-box .form-sub { font-size:0.82rem; color:var(--dp-muted); margin-bottom:1.75rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.fg { margin-bottom:1rem; }
.fg label { display:block; font-size:0.68rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--dp-muted); margin-bottom:0.38rem; }
.fg input,.fg select,.fg textarea { width:100%; background:var(--dp-off); border:1.5px solid var(--dp-border); border-radius:8px; padding:0.68rem 0.95rem; color:var(--dp-text); font-family:'Outfit',sans-serif; font-size:0.86rem; outline:none; transition:border-color 0.2s; resize:none; }
.fg input:focus,.fg select:focus,.fg textarea:focus { border-color:var(--dp-purple); background:#fff; }
.fg select option { background:#fff; }
.btn-send { width:100%; background:var(--dp-purple); color:#fff; border:none; padding:0.88rem; border-radius:8px; font-family:'Outfit',sans-serif; font-weight:600; font-size:0.88rem; cursor:pointer; transition:background 0.2s; margin-top:0.25rem; }
.btn-send:hover { background:var(--dp-purple-dark); }
.form-legal { font-size:0.7rem; color:var(--dp-muted); margin-top:0.7rem; text-align:center; }
.map-box { background:var(--dp-off); border:1px solid var(--dp-border); border-radius:14px; height:240px; display:flex; align-items:center; justify-content:center; margin-top:2rem; text-align:center; }
.map-box strong { font-size:0.95rem; font-weight:600; display:block; margin-bottom:0.25rem; }
.map-box p { font-size:0.82rem; color:var(--dp-muted); margin-bottom:1rem; }

/* CTA BLOCK */
.cta-block { background:var(--dp-purple-light); border:1px solid rgba(108,60,225,0.18); border-radius:14px; padding:2.25rem; text-align:center; }
.cta-block h3 { font-family:'Libre Baskerville',serif; font-size:1.35rem; font-weight:700; margin-bottom:0.45rem; }
.cta-block p { color:var(--dp-muted); font-size:0.87rem; max-width:420px; margin:0 auto 1.4rem; }

/* FOOTER */
footer { background:var(--dp-text); color:rgba(255,255,255,0.8); padding:3rem 0 0; }
.footer-inner { display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:3rem; padding-bottom:2.75rem; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer-logo p { font-size:0.77rem; color:rgba(255,255,255,0.45); line-height:1.7; margin-top:0.5rem; }
.footer-col { display:flex; flex-direction:column; gap:0.55rem; }
.footer-col strong { font-size:0.7rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.35); margin-bottom:0.35rem; }
.footer-col a { color:rgba(255,255,255,0.62); text-decoration:none; font-size:0.82rem; transition:color 0.2s; }
.footer-col a:hover { color:#fff; }
.footer-bottom { padding:1.1rem 0; text-align:center; }
.footer-bottom p { font-size:0.72rem; color:rgba(255,255,255,0.3); }

/* RESPONSIVE */
@media (max-width:960px) {
  nav { padding:0.85rem 1.5rem; }
  .nav-links { display:none; }
  .burger { display:block; }
  .hero-inner,.remote-inner,.esim-layout,.contact-layout { grid-template-columns:1fr; }
  .hero-right,.remote-channels { display:none; }
  .strip-grid { grid-template-columns:repeat(3,1fr); }
  .why-grid,.recon-avantages,.esim-feats { grid-template-columns:repeat(2,1fr); }
  .info-grid,.abo-grid,.neufs-grid,.acc-categories { grid-template-columns:1fr; }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .dest-grid,.pass-grid { grid-template-columns:repeat(2,1fr); }
  .footer-inner { grid-template-columns:1fr 1fr; }
  .container { padding:0 1.5rem; }
}
@media (max-width:600px) {
  .strip-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid,.recon-avantages,.esim-feats,.product-grid,.dest-grid,.pass-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; }
  .neufs-grid { grid-template-columns:1fr; }
  .acc-categories { grid-template-columns:1fr; }
}

/* LOGO IMAGE */
.logo-img { height: 44px; width: auto; display: block; }
@media (max-width: 960px) { .logo-img { height: 36px; } }
