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

  :root {
    --ink: #1a2a3a;
    --ink-soft: #2c3e50;
    --ink-muted: #7a8a9a;
    --cream: #f0f4f8;
    --cream-dark: #dce6ef;
    --gold: #1a5276;
    --gold-light: #2980b9;
    --white: #ffffff;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(247, 245, 240, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(26,82,118,0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 64px;
  }

  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-decoration: none;
  }

  .nav-logo span {
    color: var(--gold);
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-langs {
    display: flex;
    gap: 0.75rem;
  }

  .nav-langs a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    text-decoration: none;
    padding: 4px 8px;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: all 0.2s;
  }

  .nav-langs a:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .nav-langs a.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(26,82,118,0.08);
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 64px;
  }

  .hero-left {
    background: var(--ink);
    padding: 7rem 4rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-left::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border: 1px solid rgba(41,128,185,0.18);
    border-radius: 50%;
  }

  .hero-left::after {
    content: '';
    position: absolute;
    bottom: 60px; left: -80px;
    width: 280px; height: 280px;
    border: 1px solid rgba(41,128,185,0.10);
    border-radius: 50%;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 3rem;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    padding: 0.85rem 1.75rem;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background 0.2s;
    align-self: flex-start;
  }

  .hero-cta:hover { background: var(--gold-light); }

  .hero-cta-arrow {
    width: 16px; height: 16px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  .hero-right {
    background: var(--cream-dark);
    padding: 7rem 4rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-logo {
    width: auto;
    height: 170px;
    max-width: 470px;
    object-fit: contain;
    margin-bottom: 2rem;
    display: block;
  }

  .hero-info-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(26,82,118,0.25);
  }

  .contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
  }

  .contact-line {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--ink-soft);
  }

  .contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    min-width: 52px;
  }

  .contact-line a {
    color: var(--gold);
    text-decoration: none;
  }

  .founded-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ink);
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 3px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .founded-year {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-light);
  }

  /* SECTION BASE */
  section {
    padding: 6rem 0;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem;
  }

  .section-eyebrow {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }

  .section-lead {
    font-size: 1rem;
    color: var(--ink-soft);
    max-width: 580px;
    line-height: 1.8;
    margin-bottom: 3.5rem;
  }

  /* ABOUT */
  .about {
    background: var(--white);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .about-text p {
    font-size: 0.93rem;
    color: var(--ink-soft);
    margin-bottom: 1.2rem;
    line-height: 1.85;
    font-weight: 300;
  }

  .about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 0.5rem;
  }

  .stat-card {
    padding: 1.5rem;
    border: 1px solid var(--cream-dark);
    border-radius: 4px;
    background: var(--cream);
  }

  .stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }

  /* ABOUT FLIP CARDS */
  .about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .flip-card {
    perspective: 900px;
    height: 200px;
    cursor: pointer;
  }

  .flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
  }

  .flip-card:hover .flip-inner {
    transform: rotateY(180deg);
  }

  .flip-front,
  .flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    gap: 0.75rem;
  }

  .flip-front {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    box-shadow: 0 2px 8px rgba(26,82,118,0.06);
  }

  .flip-front:hover {
    border-color: var(--gold-light);
  }

  .flip-svg-icon {
    width: 44px;
    height: 44px;
    color: var(--gold);
    stroke: var(--gold);
    flex-shrink: 0;
  }

  .flip-label {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    text-align: center;
  }

  .flip-back {
    background: var(--gold);
    border: 1px solid var(--gold);
    transform: rotateY(180deg);
    align-items: flex-start;
    justify-content: center;
    gap: 0.6rem;
  }

  .flip-back h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.2rem;
  }

  .flip-back p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
  }

  /* SERVICES */
  .services {
    background: var(--white);
  }

  .services .section-lead {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    text-align: center;
  }

  .services .about-cards-grid {
    max-width: 100%;
  }

  /* LANGUAGES */
  .langs-section {
    background: var(--ink);
    color: var(--white);
  }

  .langs-section .section-title {
    color: var(--white);
  }

  .langs-section .section-lead {
    color: rgba(255,255,255,0.5);
  }

  .langs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
  }

  .lang-card {
    background: rgba(255,255,255,0.04);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background 0.2s;
    cursor: default;
  }

  .lang-card:hover {
    background: rgba(41,128,185,0.18);
  }

  .lang-flag {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    display: block;
  }

  .lang-name {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }

  /* QUALITY */
  .quality {
    background: var(--white);
  }

  .quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .quality-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .quality-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .quality-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 8px;
    flex-shrink: 0;
  }

  .quality-item-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.3rem;
  }

  .quality-item-text {
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.7;
    font-weight: 300;
  }

  .quality-visual {
    background: var(--cream);
    border-radius: 6px;
    padding: 3rem;
    text-align: center;
  }

  .quality-quote {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  .quality-quote em {
    color: var(--gold);
    font-style: normal;
  }

  .quality-source {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }

  /* CONTACT */
  .contact-section {
    background: var(--cream);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-detail-row {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--cream-dark);
  }

  .contact-detail-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
    min-width: 70px;
    padding-top: 2px;
  }

  .contact-detail-value {
    font-size: 0.92rem;
    color: var(--ink-soft);
  }

  .contact-detail-value a {
    color: var(--gold);
    text-decoration: none;
  }

  .contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--ink);
    border-radius: 4px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 300;
  }

  .contact-note strong {
    color: var(--gold-light);
    font-weight: 400;
  }

  .contact-form-area {
    background: var(--white);
    border-radius: 6px;
    padding: 2.5rem;
    border: 1px solid var(--cream-dark);
  }

  .form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 1.75rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.5rem;
  }

  .form-input, .form-textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--cream-dark);
    border-radius: 3px;
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
  }

  .form-input:focus, .form-textarea:focus {
    border-color: var(--gold);
    background: var(--white);
  }

  .form-textarea {
    height: 100px;
    resize: vertical;
  }

  .form-submit {
    width: 100%;
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 0.85rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }

  .form-submit:hover { background: var(--gold); }

  /* FOOTER */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.4);
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
  }

  .footer-logo span { color: var(--gold-light); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-left { min-height: 70vh; padding: 5rem 2rem 3rem; }
    .hero-right { padding: 3rem 2rem; }
    .container { padding: 0 1.5rem; }
    .about-grid, .quality-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-cards-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .flip-card { height: 170px; }
    .services-grid { grid-template-columns: 1fr; }
    .langs-grid { grid-template-columns: repeat(3, 1fr); }
    section { padding: 4rem 0; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
  }
/* ═══════════════════════════════════════════════════════
   TABLET — max-width: 768px
   Copre: iPad mini, tablet Android comuni
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .about-cards-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .flip-card { height: 168px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .quality-grid { grid-template-columns: 1fr; gap: 2rem; }
  .langs-section { padding: 3.5rem 0; }
}

/* ═══════════════════════════════════════════════════════
   SMARTPHONE GRANDE — max-width: 640px
   Copre: iPhone Plus/Max, Android XL (390-428px di larghezza)
═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Nav */
  nav { padding: 0 1.2rem; height: 56px; }
  .nav-langs { gap: 0; }
  .nav-langs a { font-size: 0.72rem; padding: 0.3rem 0.55rem; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-left { padding: 4.8rem 1.5rem 2.8rem; min-height: 60vh; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-right { padding: 2.5rem 1.5rem; }
  .hero-logo { height: 130px; margin-bottom: 1.5rem; }
  .hero-info-title { font-size: 1.35rem; }
  .contact-line { font-size: 0.85rem; }

  /* Sezioni */
  .container { padding: 0 1.2rem; }
  section { padding: 3.5rem 0; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }

  /* Cards */
  .about-cards-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .flip-card { height: 162px; }
  .flip-back p { font-size: 0.8rem; line-height: 1.45; }

  /* Word cloud — limita dimensione max parole */
  .wc-word { padding: 0.22em 0.4em; }

  /* Form */
  .form-submit { width: 100%; padding: 0.9rem; }
  .form-input, .form-textarea { font-size: 1rem; } /* iOS zoom fix: min 16px */

  /* Cookie banner */
  #cookie-banner .cb-inner { flex-direction: column; gap: 0.7rem; padding: 0.9rem 1.2rem; }
  #cookie-banner .cb-buttons { width: 100%; justify-content: flex-end; }

  /* Footer */
  footer { padding: 1.8rem 1.2rem; text-align: center; }
  .footer-gdpr { font-size: 0.73rem !important; }
}

/* ═══════════════════════════════════════════════════════
   SMARTPHONE STANDARD — max-width: 480px
   Copre: iPhone 12/13/14, Samsung Galaxy S, Pixel (360-390px)
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Nav */
  nav { padding: 0 1rem; height: 92px; }

  /* Hero */
  .hero-left { padding: 4.2rem 1.1rem 2.2rem; min-height: auto; }
  .hero-title { font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
  .hero-subtitle { font-size: 0.86rem; }
  .hero-eyebrow { font-size: 0.64rem; letter-spacing: 0.05em; }
  .hero-cta { font-size: 0.72rem; padding: 0.7rem 1.3rem; }
  .hero-right { padding: 2rem 1.1rem; }
  .hero-logo { height: 110px; margin-bottom: 1.2rem; }
  .hero-info-title { font-size: 1.2rem; }
  .contact-line { font-size: 0.82rem; }
  .founded-badge { flex-direction: column; gap: 0.15rem; align-items: flex-start; font-size: 0.72rem; }
  .founded-year { font-size: 1.05rem; }

  /* Sezioni */
  .container { padding: 0 1rem; }
  section { padding: 3rem 0; }
  .section-title { font-size: clamp(1.55rem, 6.5vw, 1.9rem); }
  .section-lead { font-size: 0.86rem; }
  .section-eyebrow { font-size: 0.62rem; }

  /* Cards — 1 colonna */
  .about-cards-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .flip-card { height: 155px; }
  .flip-front, .flip-back { padding: 0.9rem 1rem; }
  .flip-svg-icon { width: 34px; height: 34px; }
  .flip-label { font-size: 0.8rem; }
  .flip-back h4 { font-size: 0.88rem; margin-bottom: 0.3rem; }
  .flip-back p { font-size: 0.76rem; line-height: 1.42; }

  /* Word cloud */
  #wc-container { padding: 1.2rem 0.8rem; }
  .wc-word { padding: 0.18em 0.32em; }

  /* Quality */
  .quality-item { gap: 0.8rem; }
  .quality-item-title { font-size: 0.86rem; }
  .quality-item-text { font-size: 0.8rem; }
  .quality-quote { font-size: 0.98rem; }
  .quality-dot { flex-shrink: 0; }

  /* Contatti */
  .contact-detail-row { flex-direction: column; gap: 0.05rem; margin-bottom: 0.6rem; }
  .contact-detail-label { font-size: 0.68rem; }
  .contact-detail-value { font-size: 0.84rem; }
  .contact-note { font-size: 0.82rem; }
  .contact-form-area { padding: 1.2rem 0 0; }
  .form-title { font-size: 1.15rem; }
  .form-label { font-size: 0.76rem; }
  .form-input, .form-textarea { font-size: 1rem; padding: 0.6rem 0.8rem; } /* 1rem = iOS no-zoom */
  .form-submit { width: 100%; font-size: 0.76rem; padding: 0.85rem; }

  /* GDPR checkbox */
  .contact-form-area label span { font-size: 0.74rem !important; line-height: 1.4; }

  /* Cookie banner */
  #cookie-banner .cb-inner { padding: 0.75rem 1rem; gap: 0.6rem; }
  #cookie-banner .cb-text { font-size: 0.76rem; line-height: 1.45; }
  #cookie-banner #btn-reject,
  #cookie-banner #btn-accept { font-size: 0.73rem; padding: 0.42rem 0.85rem; }

  /* Footer */
  footer { padding: 1.4rem 1rem; font-size: 0.74rem; }
  .footer-logo { font-size: 0.95rem; }
  .footer-gdpr { font-size: 0.7rem !important; }

  /* Pagine legali */
  .legal-page { padding: 4.8rem 1rem 2.5rem; }
  .legal-page h1 { font-size: 1.75rem; }
  .legal-page h2 { font-size: 1.08rem; }
  .legal-page p, .legal-page li { font-size: 0.86rem; line-height: 1.65; }
  .legal-page table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: 0.76rem; }
  .legal-page table th, .legal-page table td { min-width: 90px; padding: 0.45rem 0.55rem; }
  .dati-box { font-size: 0.8rem; padding: 0.9rem 1rem; line-height: 1.75; }
}

/* ═══════════════════════════════════════════════════════
   SMARTPHONE PICCOLO — max-width: 375px
   Copre: iPhone SE (2020/2022), iPhone 6/7/8, piccoli Android
═══════════════════════════════════════════════════════ */
@media (max-width: 375px) {
  .hero-title { font-size: clamp(1.7rem, 9vw, 2.2rem); }
  .hero-left { padding: 4rem 1rem 2rem; }
  .hero-right { padding: 1.8rem 1rem; }
  .hero-logo { height: 92px; }
  .section-title { font-size: clamp(1.4rem, 7vw, 1.75rem); }
  .about-cards-grid { grid-template-columns: 1fr; }
  .flip-card { height: 148px; }
  .container { padding: 0 0.9rem; }
  .form-input, .form-textarea { font-size: 1rem; } /* anti-zoom iOS */
  .footer-gdpr a { display: block; margin: 0.15rem 0; } /* stack links vertically */
  nav { padding: 0 0.85rem; }
}

/* ═══════════════════════════════════════════════════════
   SMARTPHONE MINIMO — max-width: 320px
   Copre: iPhone SE (1st gen), vecchi Android
═══════════════════════════════════════════════════════ */
@media (max-width: 320px) {
  .hero-title { font-size: 1.65rem; }
  .hero-cta { font-size: 0.68rem; padding: 0.65rem 1.1rem; }
  .section-title { font-size: 1.4rem; }
  .flip-card { height: 140px; }
  .form-input, .form-textarea { padding: 0.55rem 0.7rem; }
  #cookie-banner .cb-text { font-size: 0.72rem; }
}
