/* ====================================
   MI PIACE COSÌ — LANDING PAGE WEBRTC
   Design System & Styles
   ==================================== */

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

:root {
    /* Colors */
    --magenta: #c2185b;
    --magenta-dark: #a01550;
    --purple: #9c27b0;
    --green: #43b29d;
    --green-dark: #35907f;
    --green-light: #81C784;
    --hero-bg: #ffffff;
    --hero-bg-lighter: #f7f8fa;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-100: #f5f5f5;
    --gray-200: #eee;
    --gray-300: #ddd;
    --gray-500: #999;
    --gray-700: #555;
    --gray-900: #222;
    --text-dark: #333333;
    --text-muted: #777777;
    --pink: #e91e63;
    --blue-stars: #1976d2;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-glow-green: 0 0 20px rgba(67,178,157,0.35);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --header-height: 80px;
    --section-padding: 60px 0;
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-round: 50px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.3s;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--magenta); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ====================================
   HEADER
   ==================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.header__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo { flex-shrink: 0; }
.header__logo img {
    height: 55px;
    width: auto;
}
.logo-svg { width: 160px; height: 50px; }

.header__chiamaci-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: none;
    margin-right: 12px;
}

@media (min-width: 768px) {
    .header__chiamaci-label { display: block; }
}

.header__cta-call {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius-round);
    font-size: 0.85rem;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow-green);
}

.header__cta-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(67,178,157,0.55);
}

.header__cta-call-icon svg {
    width: 22px; height: 22px;
    animation: phoneRing 2s ease-in-out infinite;
}

.header__cta-call-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.3;
}

.header__cta-call-text strong { font-size: 0.9rem; letter-spacing: 0.5px; }
.header__cta-call-text small { font-size: 0.7rem; opacity: 0.85; }

.header__cta-pulse {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    border-radius: var(--radius-round);
    transform: translate(-50%, -50%);
    border: 2px solid var(--green);
    animation: pulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%,-50%) scale(1.4); opacity: 0; }
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0); }
}

/* ====================================
   HERO BANNER (Before/After Image)
   ==================================== */
.hero-banner {
    padding-top: var(--header-height);
    background: #2d3436;
    position: relative;
    overflow: hidden;
}

.hero-banner__inner {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.hero-banner__image {
    width: 100%;
    max-height: 550px;
    overflow: hidden;
}

.hero-banner__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-banner__promo {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: var(--white);
}

.hero-banner__promo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-banner__promo-text sup {
    font-size: 0.7rem;
}

.hero-banner__discount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    background: var(--magenta);
    display: inline-block;
    padding: 4px 18px;
    border-radius: 8px;
    margin: 6px 0;
    text-shadow: none;
}

.hero-banner__promo-sub {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    line-height: 1.4;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    padding-top: 0;
    background: var(--white);
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 10% 90%, rgba(194,24,91,0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(67,178,157,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px 24px 60px;
    position: relative;
    z-index: 1;
}

.hero__title {
    text-align: center;
    margin-bottom: 40px;
}

.hero__title h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.hero__highlight {
    background: linear-gradient(135deg, var(--magenta), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Benefits column */
.hero__benefits {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
}

.benefit--reverse { flex-direction: row-reverse; text-align: right; }

.benefit__icon {
    flex-shrink: 0;
    width: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0) saturate(100%) invert(16%) sepia(83%) saturate(4500%) hue-rotate(327deg) brightness(87%) contrast(97%);
}

.benefit__icon img { width: 60px; }

.benefit__text p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 6px;
    line-height: 1.5;
}

.benefit__label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--magenta), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit__divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin: 4px 0;
}

/* CTA Panel (right column) */
.cta-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.8s var(--ease);
}

.cta-panel__header {
    background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
    padding: 20px 28px;
    text-align: center;
}

.cta-panel__header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.cta-panel__header p {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
}

.cta-panel__body {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.cta-panel__icon-big svg { width: 80px; height: 80px; }

.cta-panel__subtitle {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
}

.cta-panel__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--radius-round);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all var(--duration) var(--ease);
    box-shadow: var(--shadow-glow-green);
    animation: btnPulse 3s ease-in-out infinite;
}

.cta-panel__btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(76,175,80,0.6);
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(76,175,80,0.4); }
    50% { box-shadow: 0 0 35px rgba(76,175,80,0.7); }
}

.cta-panel__note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--green-dark);
    font-weight: 500;
}

.cta-panel__hours {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--gray-500);
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ====================================
   PRODUCTS SECTION
   ==================================== */
.products {
    background: var(--white);
    padding: var(--section-padding);
}

.products__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Carousel */
.carousel {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-100);
}

.carousel__track {
    display: flex;
    transition: transform 0.5s var(--ease);
}

.carousel__slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.carousel__slide img { border-radius: var(--radius-sm); }

.carousel__badges {
    position: absolute;
    bottom: 32px;
    left: 32px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.badge-nutri { width: 100px; }

.badge-yuka {
    background: var(--green);
    color: var(--white);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
}

.carousel__zero-list {
    position: absolute;
    top: 24px; left: 24px;
    z-index: 2;
    color: var(--gray-900);
}

.zero-big {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--magenta);
    display: block;
    margin-bottom: 4px;
}

.carousel__zero-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.carousel__zero-list li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.5;
    position: relative;
    padding-left: 16px;
}

.carousel__zero-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--magenta);
    font-weight: 700;
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--gray-700);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--duration) var(--ease);
    z-index: 3;
}

.carousel__btn:hover { background: var(--white); box-shadow: var(--shadow-md); }
.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }

.carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
}

.carousel__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.carousel__dot--active {
    background: var(--magenta);
    transform: scale(1.2);
}

/* Results */
.products__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
    color: var(--magenta);
}

.products__title span { color: var(--purple); }

.products__graph {
    width: 100%;
    margin: 0 auto;
}

/* ====================================
   SOCIAL PROOF
   ==================================== */
.social-proof {
    background: var(--off-white);
    padding: var(--section-padding);
}

.social-proof__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 32px;
    color: var(--magenta);
}

.social-proof__reviews {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.review-widget {
    text-align: center;
}

.review-widget__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.review-widget__stars {
    font-size: 1.6rem;
    color: var(--blue-stars);
    letter-spacing: 3px;
}

.review-widget__score {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
}

.review-widget__source {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 28px;
}

.review-widget__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card__stars {
    font-size: 1rem;
    color: #ffc107;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 0.9rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.6;
}

.review-card__author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* ====================================
   DISCLAIMER
   ==================================== */
.disclaimer {
    background: var(--gray-200);
    padding: 16px 24px;
    text-align: center;
}

.disclaimer p {
    max-width: var(--container-max);
    margin: 0 auto;
    font-size: 0.7rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.disclaimer sup { font-size: 0.6rem; }

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--gray-100);
    padding: 24px;
    border-top: 1px solid var(--gray-200);
}

.footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer a {
    color: var(--gray-700);
    font-size: 0.8rem;
    transition: color var(--duration) var(--ease);
}

.footer a:hover { color: var(--gray-900); text-decoration: none; }
.footer span { color: var(--gray-300); font-size: 0.8rem; }

/* ====================================
   STICKY CTA
   ==================================== */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--duration) var(--ease);
    pointer-events: none;
}

.sticky-cta--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-round);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-lg), var(--shadow-glow-green);
    transition: all var(--duration) var(--ease);
    animation: stickyPulse 3s ease-in-out infinite;
}

.sticky-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 40px rgba(76,175,80,0.6);
}

@keyframes stickyPulse {
    0%, 100% { box-shadow: 0 8px 40px rgba(0,0,0,0.2), 0 0 20px rgba(76,175,80,0.4); }
    50% { box-shadow: 0 8px 40px rgba(0,0,0,0.2), 0 0 40px rgba(76,175,80,0.7); }
}

/* ====================================
   PHONE WIDGET (WebRTC Modal)
   ==================================== */
.phone-widget {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.phone-widget--open {
    opacity: 1;
    pointer-events: auto;
}

.phone-widget__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
}

.phone-widget__panel {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 420px;
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s var(--ease);
}

.phone-widget--open .phone-widget__panel {
    transform: scale(1) translateY(0);
}

.phone-widget__close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    color: var(--gray-500);
    font-size: 1.8rem;
    line-height: 1;
    transition: color var(--duration) var(--ease);
}

.phone-widget__close:hover { color: var(--gray-900); }

.phone-widget__state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.phone-widget__state--hidden { display: none !important; }

.phone-widget__logo svg { width: 72px; height: 72px; }

.phone-widget__state h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
}

.phone-widget__desc {
    color: var(--gray-500);
    font-size: 0.85rem;
    line-height: 1.5;
}

.phone-widget__consents {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin: 8px 0;
}

.phone-widget__consent-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--gray-700);
    cursor: pointer;
    line-height: 1.4;
}

.phone-widget__consent-item input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--green);
    width: 16px; height: 16px;
}

.phone-widget__consent-item a { color: var(--magenta); }

.phone-widget__start-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-round);
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--duration) var(--ease);
    box-shadow: var(--shadow-glow-green);
    margin-top: 4px;
}

.phone-widget__start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(76,175,80,0.6);
}

.phone-widget__start-btn--secondary {
    background: var(--gray-200);
    color: var(--gray-700);
    box-shadow: none;
}

.phone-widget__start-btn--secondary:hover {
    background: var(--gray-300);
    box-shadow: none;
}

.phone-widget__start-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Calling animation */
.phone-widget__calling-anim {
    position: relative;
    width: 100px; height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-widget__calling-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--green);
}

.ring--1 { width: 68px; height: 68px; animation: ringExpand 2s ease-out infinite; }
.ring--2 { width: 68px; height: 68px; animation: ringExpand 2s ease-out 0.5s infinite; }
.ring--3 { width: 68px; height: 68px; animation: ringExpand 2s ease-out 1s infinite; }

@keyframes ringExpand {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Connected */
.phone-widget__connected-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(76,175,80,0.4);
}

.phone-widget__timer {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 2px;
}

.phone-widget__controls {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.phone-widget__mute-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all var(--duration) var(--ease);
}

.phone-widget__mute-btn:hover { background: var(--gray-200); }

.phone-widget__mute-btn--active {
    background: var(--magenta) !important;
    color: var(--white) !important;
}

.phone-widget__hangup-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-200);
    color: var(--gray-700);
    padding: 12px 24px;
    border-radius: var(--radius-round);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--duration) var(--ease);
}

.phone-widget__hangup-btn:hover { background: var(--gray-300); }

.phone-widget__hangup-btn--red {
    flex-direction: column;
    background: #f44336 !important;
    color: var(--white) !important;
    border-radius: var(--radius-md);
    padding: 12px 20px;
    font-size: 0.75rem;
}

.phone-widget__hangup-btn--red:hover { background: #d32f2f !important; }

/* Ended */
.phone-widget__ended-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-widget__thankyou {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Offline */
.phone-widget__offline-icon {
    font-size: 3rem;
}

/* Error */
.phone-widget__error-icon {
    font-size: 3rem;
    color: #f44336;
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 900px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero__benefits { order: 2; }
    .hero__cta-panel { order: 1; }
    .benefit--reverse { flex-direction: row; text-align: left; }

    .hero-banner__promo {
        left: 3%;
    }
    .hero-banner__discount {
        font-size: 2.2rem;
        padding: 3px 14px;
    }
    .hero-banner__promo-text {
        font-size: 0.95rem;
    }
    .hero-banner__promo-sub {
        font-size: 0.85rem;
    }

    .products__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .review-widget__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    :root {
        --header-height: 64px;
    }

    .header__cta-call-text { display: none; }
    .header__cta-call {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    .header__cta-call::after {
        content: 'CHIAMACI';
        font-weight: 700;
        font-size: 0.75rem;
    }

    .header__logo img { height: 40px; }
    .logo-svg { width: 120px; height: 40px; }

    .hero-banner__image { max-height: 350px; }
    .hero-banner__discount {
        font-size: 1.6rem;
        padding: 2px 10px;
    }
    .hero-banner__promo-text { font-size: 0.8rem; }
    .hero-banner__promo-sub { font-size: 0.75rem; }

    .hero__inner { padding: 24px 16px 40px; }
    .hero__title h1 { font-size: 1.6rem; }

    .benefit__icon { width: 50px; height: 50px; }
    .benefit__icon img { width: 40px; }
    .benefit__text p { font-size: 0.8rem; }

    .cta-panel__body { padding: 24px 20px; }
    .cta-panel__btn { padding: 14px 28px; font-size: 1rem; }

    .products__title { font-size: 1.3rem; }
    .social-proof__title { font-size: 1.3rem; }

    .sticky-cta { bottom: 16px; right: 16px; left: 16px; }
    .sticky-cta__btn { width: 100%; justify-content: center; }

    .phone-widget__panel { padding: 28px 20px; }
}
