/* ══════════════════════════════════════════
   JULEDGE.COM — Global Stylesheet
   Design: #0A0A0A bg, #C8FF00 accent, Syne/Instrument Serif/DM Sans
   ══════════════════════════════════════════ */

:root {
  --bg: #0A0A0A;
  --bg2: #111111;
  --bg3: #1A1A1A;
  --text: #F0EDE8;
  --muted: #A8A8A0;
  --accent: #C8FF00;
  --accent2: #FF6B35;
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(200,255,0,0.3);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { overflow-x:hidden; }

body {
  font-family:'DM Sans', sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

body::before {
  content:'';
  position:fixed;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events:none;
  z-index:0;
  opacity:0.4;
}

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:12px 6%;
  display:flex; justify-content:space-between; align-items:center;
  background:rgba(10,10,10,0.88);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
}
.nav-logo a { display:block; }
.nav-logo img { height:80px; width:auto; display:block; }
.nav-cta {
  display:flex; align-items:center; gap:8px;
  background:var(--accent); color:#0A0A0A;
  padding:12px 24px; border-radius:4px;
  font-family:'Syne',sans-serif; font-weight:700; font-size:14px;
  text-decoration:none; letter-spacing:0.3px;
  transition:opacity .2s, transform .2s;
  box-shadow:0 2px 12px rgba(200,255,0,0.15);
}
.nav-cta:hover { opacity:0.85; transform:translateY(-1px); }

/* ── NAV DESKTOP LINKS ── */
.nav-links {
  display:flex; align-items:center; gap:32px;
  list-style:none;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
}
.nav-links a {
  font-family:'DM Sans',sans-serif;
  font-size:14px; font-weight:400;
  color:var(--muted);
  text-decoration:none;
  transition:color .2s;
  letter-spacing:0.2px;
}
.nav-links a:hover { color:var(--text); }

/* ── HAMBURGER ── */
.nav-hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  background:none; border:none;
  padding:8px;
  z-index:200;
}
.nav-hamburger span {
  display:block;
  width:24px; height:2px;
  background:var(--text);
  transition:transform .3s, opacity .3s;
}
.nav-hamburger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity:0; }
.nav-hamburger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.nav-mobile-menu {
  display:none;
  position:fixed; top:0; left:0; right:0; bottom:0;
  background:rgba(10,10,10,0.96);
  backdrop-filter:blur(24px);
  z-index:150;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:32px;
}
.nav-mobile-menu.active { display:flex; }
.nav-mobile-menu a {
  font-family:'Syne',sans-serif;
  font-size:24px; font-weight:600;
  color:var(--text);
  text-decoration:none;
  transition:color .2s;
}
.nav-mobile-menu a:hover { color:var(--accent); }
.nav-mobile-menu .nav-cta {
  margin-top:16px;
  font-size:16px;
  padding:16px 32px;
  color:#0A0A0A;
}
/* ── CLOSE BUTTON (X) IN MOBILE MENU ── */
.nav-mobile-close {
  position:absolute;
  top:20px; right:20px;
  background:none; border:none;
  color:var(--text);
  font-size:32px;
  cursor:pointer;
  font-family:'Syne',sans-serif;
  font-weight:300;
  width:44px; height:44px;
  display:flex; align-items:center; justify-content:center;
  transition:color .2s;
}
.nav-mobile-close:hover { color:var(--accent); }

/* ── HERO ── */
.hero {
  min-height:100vh; display:flex; align-items:center;
  padding:160px 6% 100px; position:relative; overflow:hidden;
}
.hero::after {
  content:''; position:absolute; top:-200px; right:-200px;
  width:700px; height:700px;
  background:radial-gradient(circle, rgba(200,255,0,0.06) 0%, transparent 65%);
  pointer-events:none;
}
.hero-content { max-width:900px; position:relative; z-index:1; }
.hero-tag {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Syne',sans-serif; font-size:11px; font-weight:600;
  letter-spacing:2px; text-transform:uppercase; color:var(--accent);
  margin-bottom:32px;
}
.hero-tag::before { content:''; width:24px; height:1px; background:var(--accent); }
.hero h1 {
  font-family:'Syne',sans-serif;
  font-size:clamp(38px, 5.5vw, 80px);
  font-weight:800; line-height:1.0; letter-spacing:-2px;
  color:var(--text); margin-bottom:16px;
}
.hero h1 em {
  font-family:'Instrument Serif',serif;
  font-style:italic; font-weight:400; color:var(--accent); letter-spacing:-1px;
}
.hero-divider { width:60px; height:2px; background:var(--accent); margin:32px 0; }
.hero-sub {
  font-size:18px; color:var(--muted); line-height:1.7;
  max-width:540px; margin-bottom:48px;
}
.hero-ctas { display:flex; gap:16px; align-items:center; flex-wrap:wrap; }
.btn-primary {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--accent); color:#0A0A0A;
  padding:16px 28px; border-radius:4px;
  font-family:'Syne',sans-serif; font-weight:700; font-size:15px;
  text-decoration:none; transition:opacity .2s, transform .2s;
}
.btn-primary:hover { opacity:0.85; transform:translateY(-1px); }
.btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  color:var(--muted); font-size:14px; text-decoration:none;
  transition:color .2s; font-family:'DM Sans',sans-serif;
}
.btn-ghost:hover { color:var(--text); }
.btn-ghost::after { content:'→'; transition:transform .2s; }
.btn-ghost:hover::after { transform:translateX(4px); }

/* ── MARQUEE ── */
.marquee-wrapper {
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:18px 0; overflow:hidden; background:var(--bg2);
}
.marquee-track {
  display:flex; gap:48px;
  animation:marquee 18s linear infinite;
  white-space:nowrap;
}
.marquee-item {
  font-family:'Syne',sans-serif; font-size:12px; font-weight:600;
  letter-spacing:2px; text-transform:uppercase; color:var(--muted);
  display:flex; align-items:center; gap:14px; flex-shrink:0;
}
.marquee-item span { color:var(--accent); font-size:15px; }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ── SECTIONS COMMON ── */
section { padding:100px 6%; position:relative; }
.section-label {
  font-family:'Syne',sans-serif; font-size:11px; font-weight:600;
  letter-spacing:2px; text-transform:uppercase; color:var(--accent);
  margin-bottom:24px; display:flex; align-items:center; gap:10px;
}
.section-label::before { content:''; width:20px; height:1px; background:var(--accent); }

/* ── PROBLEM ── */
.problem { background:var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.problem-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.problem h2 { font-family:'Syne',sans-serif; font-size:clamp(28px,3.5vw,44px); font-weight:800; line-height:1.1; letter-spacing:-1px; margin-bottom:24px; }
.problem h2 em { font-family:'Instrument Serif',serif; font-style:italic; font-weight:400; color:var(--accent); }
.problem p { font-size:16px; color:var(--muted); line-height:1.8; }
.problem-visual { background:var(--bg3); border:1px solid var(--border); border-radius:12px; padding:36px; position:relative; overflow:hidden; }
.problem-visual::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg, var(--accent), transparent); }
.problem-stat { margin-bottom:28px; padding-bottom:28px; border-bottom:1px solid var(--border); }
.problem-stat:last-child { margin-bottom:0; padding-bottom:0; border-bottom:none; }
.problem-stat-number { font-family:'Syne',sans-serif; font-size:48px; font-weight:800; color:var(--accent); line-height:1; margin-bottom:6px; }
.problem-stat-label { font-size:14px; color:var(--muted); line-height:1.5; }

/* ── SERVICES ── */
.services-inner { max-width:1100px; margin:0 auto; }
.services-header { margin-bottom:64px; }
.services-header h2 { font-family:'Syne',sans-serif; font-size:clamp(28px,3.5vw,44px); font-weight:800; letter-spacing:-1px; line-height:1.1; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.service-card {
  background:var(--bg2); padding:40px 32px; position:relative; transition:background .3s;
  border-top:2px solid transparent;
}
.service-card:hover { background:var(--bg3); border-top-color:var(--accent); }
.service-card:first-child { border-radius:12px 0 0 12px; }
.service-card:last-child { border-radius:0 12px 12px 0; }
.service-icon { font-size:32px; margin-bottom:24px; }
.service-card h3 { font-family:'Syne',sans-serif; font-size:20px; font-weight:700; margin-bottom:14px; letter-spacing:-0.3px; }
.service-card p { font-size:14px; color:var(--muted); line-height:1.8; }
.service-tag { display:inline-block; margin-top:16px; font-family:'Syne',sans-serif; font-size:11px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--accent); }

/* ── HOW IT WORKS ── */
.how-inner { max-width:1100px; margin:0 auto; }
.how-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:64px; flex-wrap:wrap; gap:24px; }
.how-header h2 { font-family:'Syne',sans-serif; font-size:clamp(28px,3.5vw,44px); font-weight:800; letter-spacing:-1px; line-height:1.1; max-width:500px; }
.how-header h2 em { font-family:'Instrument Serif',serif; font-style:italic; font-weight:400; color:var(--accent); }
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; }
.step-card { background:var(--bg2); padding:36px 28px; position:relative; transition:background .3s; }
.step-card:hover { background:var(--bg3); }
.step-card:first-child { border-radius:12px 0 0 12px; }
.step-card:last-child { border-radius:0 12px 12px 0; }
.step-letter { font-family:'Syne',sans-serif; font-size:48px; font-weight:800; color:rgba(200,255,0,0.15); line-height:1; margin-bottom:16px; }
.step-card h3 { font-family:'Syne',sans-serif; font-size:17px; font-weight:700; margin-bottom:10px; letter-spacing:-0.3px; }
.step-card p { font-size:13px; color:var(--muted); line-height:1.7; }

/* ── PORTFOLIO ── */
.portfolio { background:var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.portfolio-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.portfolio h2 { font-family:'Syne',sans-serif; font-size:clamp(28px,3.5vw,44px); font-weight:800; letter-spacing:-1px; line-height:1.1; margin-bottom:20px; }
.portfolio p { font-size:16px; color:var(--muted); line-height:1.8; margin-bottom:24px; }
.portfolio-tag { display:inline-block; background:rgba(200,255,0,0.1); border:1px solid var(--border-accent); padding:6px 14px; border-radius:4px; font-family:'Syne',sans-serif; font-size:11px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--accent); margin-bottom:16px; }
.portfolio-preview { background:var(--bg3); border:1px solid var(--border); border-radius:12px; overflow:hidden; position:relative; }
.portfolio-browser-bar { background:#1E1E1E; padding:12px 16px; display:flex; align-items:center; gap:8px; border-bottom:1px solid var(--border); }
.browser-dot { width:10px; height:10px; border-radius:50%; }
.browser-url { background:var(--bg); border-radius:4px; padding:5px 12px; font-size:11px; color:var(--muted); flex:1; margin-left:8px; font-family:'DM Sans',sans-serif; }
.portfolio-screen { padding:32px; min-height:220px; background:linear-gradient(135deg, #1A1917 0%, #0A0A0A 100%); display:flex; flex-direction:column; justify-content:center; }
.portfolio-screen-tag { font-size:10px; color:rgba(255,255,255,0.4); letter-spacing:2px; text-transform:uppercase; margin-bottom:12px; font-family:'Syne',sans-serif; }
.portfolio-screen-title { font-family:'Syne',sans-serif; font-size:22px; font-weight:800; color:#fff; line-height:1.2; margin-bottom:16px; }
.portfolio-screen-btn { display:inline-block; background:#FF6B00; color:#fff; padding:10px 20px; border-radius:4px; font-size:12px; font-weight:700; font-family:'Syne',sans-serif; width:fit-content; }

/* ── COMPARISON TABLE ── */
.comparison { }
.comparison-inner { max-width:900px; margin:0 auto; overflow-x:auto; -webkit-overflow-scrolling:touch; }
.comparison h2 { font-family:'Syne',sans-serif; font-size:clamp(28px,3.5vw,44px); font-weight:800; letter-spacing:-1px; line-height:1.1; margin-bottom:48px; text-align:center; }
.comparison h2 em { font-family:'Instrument Serif',serif; font-style:italic; font-weight:400; color:var(--accent); }
.comp-table { width:100%; border-collapse:collapse; border:1px solid var(--border); border-radius:12px; overflow:hidden; }
.comp-table th { background:var(--bg3); padding:20px 24px; font-family:'Syne',sans-serif; font-size:14px; font-weight:700; text-align:left; border-bottom:1px solid var(--border); }
.comp-table th:first-child { color:var(--muted); }
.comp-table th:nth-child(2) { color:var(--muted); }
.comp-table th:nth-child(3) { color:var(--accent); }
.comp-table td { padding:16px 24px; font-size:14px; color:var(--muted); border-bottom:1px solid var(--border); background:var(--bg2); }
.comp-table tr:last-child td { border-bottom:none; }
.comp-table td:first-child { font-weight:500; color:var(--text); }
.comp-table td:nth-child(3) { color:var(--text); }
.comp-check { color:var(--accent); font-weight:700; }
.comp-x { color:var(--accent2); }

/* ── PRICING ── */
.pricing { background:var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.pricing-inner { max-width:900px; margin:0 auto; text-align:center; }
.pricing h2 { font-family:'Syne',sans-serif; font-size:clamp(28px,3.5vw,44px); font-weight:800; letter-spacing:-1px; line-height:1.1; margin-bottom:16px; }
.pricing > .pricing-inner > p { font-size:16px; color:var(--muted); line-height:1.7; margin-bottom:48px; max-width:600px; margin-left:auto; margin-right:auto; }
.pricing-cards { display:grid; grid-template-columns:1fr 1fr; gap:2px; margin-bottom:32px; }
.pricing-card { background:var(--bg3); padding:40px 32px; position:relative; }
.pricing-card:first-child { border-radius:12px 0 0 12px; }
.pricing-card:last-child { border-radius:0 12px 12px 0; border-top:2px solid var(--accent); }
.pricing-card h3 { font-family:'Syne',sans-serif; font-size:13px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--accent); margin-bottom:16px; }
.pricing-amount { font-family:'Syne',sans-serif; font-size:48px; font-weight:800; color:var(--text); line-height:1; margin-bottom:8px; }
.pricing-period { font-size:14px; color:var(--muted); margin-bottom:24px; }
.pricing-features { list-style:none; text-align:left; }
.pricing-features li { font-size:14px; color:var(--muted); line-height:1.6; padding:6px 0; display:flex; align-items:flex-start; gap:10px; }
.pricing-features li::before { content:'✓'; color:var(--accent); font-weight:700; flex-shrink:0; margin-top:1px; }
.pricing-note { font-size:13px; color:var(--muted); }

/* ── ABOUT ── */
.about-inner { max-width:900px; margin:0 auto; display:grid; grid-template-columns:auto 1fr; gap:48px; align-items:center; }
.about-photo { width:200px; height:200px; border-radius:12px; object-fit:cover; object-position:top; border:2px solid var(--border); filter:grayscale(20%); }
.about h2 { font-family:'Syne',sans-serif; font-size:clamp(24px,3vw,36px); font-weight:800; letter-spacing:-1px; line-height:1.1; margin-bottom:16px; }
.about p { font-size:16px; color:var(--muted); line-height:1.8; margin-bottom:16px; }
.about-name { font-family:'Syne',sans-serif; font-weight:700; color:var(--text); }

/* ── CTA FINALE ── */
.cta-final { background:var(--bg2); border-top:1px solid var(--border); }
.cta-final-inner { max-width:700px; margin:0 auto; text-align:center; }
.cta-final h2 { font-family:'Syne',sans-serif; font-size:clamp(28px,4vw,52px); font-weight:800; letter-spacing:-1.5px; line-height:1.1; margin-bottom:20px; }
.cta-final h2 em { font-family:'Instrument Serif',serif; font-style:italic; font-weight:400; color:var(--accent); }
.cta-final p { font-size:17px; color:var(--muted); line-height:1.7; margin-bottom:40px; }
.cta-final-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:24px; }
.cta-note { font-size:13px; color:var(--muted); }

/* ── FOOTER ── */
footer {
  padding:48px 6% 32px;
  border-top:1px solid var(--border);
}
.footer-inner {
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:48px;
  margin-bottom:32px;
}
.footer-col h4 {
  font-family:'Syne',sans-serif;
  font-size:12px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase;
  color:var(--accent);
  margin-bottom:16px;
}
.footer-col p,
.footer-col a {
  font-size:13px;
  color:var(--muted);
  line-height:1.8;
  text-decoration:none;
  display:block;
}
.footer-col a:hover { color:var(--text); }
.footer-social {
  display:flex; gap:16px; margin-top:8px;
}
.footer-social a {
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px;
  border:1px solid var(--border);
  border-radius:8px;
  transition:border-color .2s, background .2s;
}
.footer-social a:hover {
  border-color:var(--accent);
  background:rgba(200,255,0,0.06);
}
.footer-social svg {
  width:16px; height:16px;
  fill:var(--muted);
  transition:fill .2s;
}
.footer-social a:hover svg { fill:var(--accent); }
.footer-bottom {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:24px;
  border-top:1px solid var(--border);
  flex-wrap:wrap;
  gap:12px;
}
.footer-bottom p {
  font-size:12px;
  color:var(--muted);
  opacity:0.5;
}
.footer-bottom a {
  font-size:12px;
  color:var(--muted);
  opacity:0.5;
  text-decoration:none;
}
.footer-bottom a:hover { opacity:0.8; }
.footer-legal {
  display:flex; gap:16px;
}

/* ── PAGE HEADER (for internal pages) ── */
.page-header {
  padding:160px 6% 80px;
  position:relative;
}
.page-header::after {
  content:''; position:absolute; top:-200px; right:-200px;
  width:700px; height:700px;
  background:radial-gradient(circle, rgba(200,255,0,0.04) 0%, transparent 65%);
  pointer-events:none;
}
.page-header-inner {
  max-width:900px;
  position:relative;
  z-index:1;
}
.page-header h1 {
  font-family:'Syne',sans-serif;
  font-size:clamp(32px,5vw,64px);
  font-weight:800; line-height:1.05; letter-spacing:-2px;
  margin-bottom:20px;
}
.page-header h1 em {
  font-family:'Instrument Serif',serif;
  font-style:italic; font-weight:400; color:var(--accent); letter-spacing:-1px;
}
.page-header p {
  font-size:18px; color:var(--muted); line-height:1.7;
  max-width:600px;
}

/* ── INTERNAL PAGE CONTENT ── */
.page-content {
  padding:80px 6%;
}
.page-content-inner {
  max-width:900px;
  margin:0 auto;
}
.page-content h2 {
  font-family:'Syne',sans-serif;
  font-size:clamp(24px,3vw,36px);
  font-weight:800; letter-spacing:-1px; line-height:1.1;
  margin-bottom:20px;
}
.page-content h2 em {
  font-family:'Instrument Serif',serif;
  font-style:italic; font-weight:400; color:var(--accent);
}
.page-content p {
  font-size:16px; color:var(--muted); line-height:1.8;
  margin-bottom:20px;
}
.page-content-inner .about-photo {
  float:right;
  margin:0 0 24px 40px;
}

/* ── FAQ STYLES ── */
.faq-list {
  max-width:900px; margin:0 auto;
}
.faq-item {
  border-bottom:1px solid var(--border);
}
.faq-question {
  width:100%;
  background:none; border:none; cursor:pointer;
  padding:28px 0;
  display:flex; justify-content:space-between; align-items:center;
  gap:24px;
  text-align:left;
}
.faq-question h3 {
  font-family:'Syne',sans-serif;
  font-size:18px; font-weight:700;
  color:var(--text);
  letter-spacing:-0.3px;
}
.faq-icon {
  font-family:'Syne',sans-serif;
  font-size:24px; font-weight:300;
  color:var(--accent);
  flex-shrink:0;
  transition:transform .3s;
}
.faq-item.active .faq-icon { transform:rotate(45deg); }
.faq-answer {
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}
.faq-answer p {
  font-size:15px; color:var(--muted); line-height:1.8;
  padding:0 0 28px 0;
}

/* ── CONTATTI PAGE ── */
.contatti-grid {
  max-width:900px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
}
.contatti-card {
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:12px;
  padding:40px 32px;
  text-align:center;
  transition:border-color .3s;
}
.contatti-card:hover { border-color:var(--border-accent); }
.contatti-card-icon { font-size:36px; margin-bottom:20px; }
.contatti-card h3 {
  font-family:'Syne',sans-serif;
  font-size:18px; font-weight:700;
  margin-bottom:12px;
}
.contatti-card p {
  font-size:14px; color:var(--muted); line-height:1.7;
  margin-bottom:20px;
}

/* ── SECTION LINK (scopri di più) ── */
.section-more {
  display:inline-flex; align-items:center; gap:8px;
  color:var(--accent); font-size:14px; text-decoration:none;
  font-family:'DM Sans',sans-serif; font-weight:500;
  margin-top:16px;
  transition:gap .2s;
}
.section-more:hover { gap:12px; }
.section-more::after { content:'→'; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.hero-tag { animation:fadeUp 0.5s ease forwards; }
.hero h1 { animation:fadeUp 0.6s ease 0.1s both; }
.hero-divider { animation:fadeUp 0.6s ease 0.2s both; }
.hero-sub { animation:fadeUp 0.6s ease 0.25s both; }
.hero-ctas { animation:fadeUp 0.6s ease 0.3s both; }

/* ── RESPONSIVE ── */
@media (max-width:768px) {
  html { scroll-behavior:smooth; }
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }
  .problem-inner, .portfolio-inner, .about-inner { grid-template-columns:1fr; gap:48px; }
  .services-grid { grid-template-columns:1fr; gap:2px; }
  .service-card:first-child { border-radius:12px 12px 0 0; }
  .service-card:last-child { border-radius:0 0 12px 12px; }
  .steps-grid { grid-template-columns:1fr; gap:2px; }
  .step-card:first-child { border-radius:12px 12px 0 0; }
  .step-card:nth-child(2) { border-radius:0; }
  .step-card:nth-child(3) { border-radius:0; }
  .step-card:last-child { border-radius:0 0 12px 12px; }
  .pricing-cards { grid-template-columns:1fr; }
  .pricing-card:first-child { border-radius:12px 12px 0 0; }
  .pricing-card:last-child { border-radius:0 0 12px 12px; }
  .comp-table { font-size:12px; }
  .comp-table th { padding:10px 10px; font-size:11px; }
  .comp-table td { padding:12px 10px; font-size:12px; }
  .how-header { flex-direction:column; align-items:flex-start; }
  .footer-inner { grid-template-columns:1fr; gap:32px; text-align:center; }
  .footer-social { justify-content:center; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .footer-legal { justify-content:center; }
  .hero h1 { font-size:clamp(32px,8vw,52px); letter-spacing:-1px; }
  .hero-tag { font-size:9px; letter-spacing:1.5px; }
  nav { padding:10px 4%; gap:8px; }
  .nav-logo img { height:64px !important; }
  nav > .nav-cta { display:none; }
  .hero { padding:120px 4% 80px; }
  .about-photo { width:140px; height:140px; }
  .page-header { padding:120px 4% 60px; }
  .contatti-grid { grid-template-columns:1fr; }
  .page-content-inner .about-photo { float:none; margin:0 auto 24px; display:block; }
}
