/*
Theme Name: Franke A Line Landing
Theme URI: https://www.alexcaffe.com
Description: Landing page per la nuova Franke A Line — A600 & A800. Partner ufficiale Alex S.r.l.
Version: 1.0.0
Author: Alex S.r.l.
Author URI: https://www.alexcaffe.com
License: Private
Text Domain: franke-aline
*/

/* =============================================
   FRANKE NEW A LINE — LANDING PAGE
   Alex S.r.l. Partner Ufficiale
   ============================================= */

:root {
    --vibrant-red: #E73743;
    --black: #000000;
    --white: #FFFFFF;
    --gray-80: #53565A;
    --gray-60: #898B8D;
    --gray-40: #B2B1B1;
    --gray-20: #D9D8D7;
    --dark-coffee: #3C281E;
    --mocha: #826450;
    --wheat: #E2B47D;
    --champagne: #F0E1E1;
    --blueberry: #2D324B;
    --lavender: #416478;
    --rosemary: #AFC3C3;
    --basil: #2D462D;
    --sage: #BECDB9;
    --burgundy: #501E23;
    --font-main: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    color: var(--gray-80);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---- HEADER ---- */
.header {
    background: var(--white);
    border-bottom: 3px solid var(--vibrant-red);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logos { display: flex; align-items: center; gap: 20px; }
.header-logos img.alex-logo { height: 44px; width: auto; }
.header-logos .divider { width: 1px; height: 36px; background: var(--gray-40); }
.header-logos img.franke-logo { height: 32px; width: auto; }
.header-cta .btn { font-size: 13px; padding: 10px 28px; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--gray-80); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}
.btn-red { background: var(--vibrant-red); color: var(--white); }
.btn-red:hover { background: #c82e37; box-shadow: 0 4px 16px rgba(231,55,67,0.3); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--dark-coffee); }
.btn-dark { background: var(--dark-coffee); color: var(--white); }
.btn-dark:hover { background: var(--black); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }

/* ---- HERO ---- */
.hero {
    background: var(--dark-coffee);
    color: var(--white);
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--vibrant-red);
    font-weight: 700;
    margin-bottom: 16px;
}
.hero h1 {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 12px;
}
.hero h1 span { color: var(--vibrant-red); }
.hero-tagline {
    font-size: 22px;
    font-weight: 300;
    color: var(--wheat);
    margin-bottom: 24px;
    font-style: italic;
}
.hero p {
    font-size: 16px;
    color: var(--gray-40);
    margin-bottom: 36px;
    max-width: 460px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image { text-align: center; }
.hero-image img {
    max-height: 520px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.35));
}

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--vibrant-red); padding: 36px 0; }
.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.trust-item h3 { font-size: 36px; font-weight: 700; color: var(--white); }
.trust-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- SECTION GENERAL ---- */
.section { padding: 96px 0; }
.section-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--vibrant-red);
    font-weight: 700;
    margin-bottom: 12px;
}
.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.15;
}
.section-subtitle {
    font-size: 16px;
    color: var(--gray-60);
    margin-bottom: 56px;
    max-width: 620px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- BENEFITS ---- */
.benefits { background: var(--white); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.benefit-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-20);
    transition: all 0.25s ease;
    background: var(--white);
}
.benefit-card:hover {
    border-color: var(--vibrant-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--vibrant-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}
.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}
.benefit-card p { font-size: 13px; color: var(--gray-60); line-height: 1.6; }

/* ---- GALLERY ---- */
.gallery { background: var(--black); padding: 0; overflow: hidden; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}
.gallery-grid img:hover { opacity: 0.85; }

/* ---- MODELS ---- */
.models { background: #f5f5f4; }
.models-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.model-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.model-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.model-card-img {
    height: 320px;
    overflow: hidden;
}
.model-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.model-card-body { padding: 32px; }
.model-card-body .model-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--vibrant-red);
    font-weight: 700;
    margin-bottom: 8px;
}
.model-card-body h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}
.model-card-body .model-claim {
    font-size: 15px;
    color: var(--mocha);
    font-style: italic;
    margin-bottom: 20px;
}
.model-specs { list-style: none; margin-bottom: 24px; }
.model-specs li {
    font-size: 14px;
    color: var(--gray-80);
    padding: 9px 0;
    border-bottom: 1px solid var(--gray-20);
    display: flex;
    justify-content: space-between;
}
.model-specs li:last-child { border-bottom: none; }
.model-specs li strong { color: var(--black); }
.model-card-body .btn { width: 100%; text-align: center; }
.btn-link {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-coffee);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid var(--gray-20);
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
}
.btn-link:hover {
    color: var(--vibrant-red);
    border-color: var(--vibrant-red);
    background: rgba(231,55,67,0.05);
}

/* ---- FEATURES ---- */
.features { background: var(--white); }
.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.features-image { border-radius: var(--radius-lg); overflow: hidden; }
.features-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.feature-list { list-style: none; }
.feature-list li {
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-20);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.feature-list li h4::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vibrant-red);
    flex-shrink: 0;
}
.feature-list li p {
    font-size: 14px;
    color: var(--gray-60);
    padding-left: 18px;
}

/* ---- FORMULE DI ACQUISTO ---- */
.quote-section {
    background: var(--blueberry);
    color: var(--white);
    padding: 80px 0;
}
.quote-section .container { max-width: 1140px; text-align: center; }
.formule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.formula-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    transition: all 0.25s ease;
}
.formula-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--vibrant-red);
    transform: translateY(-4px);
}
.formula-icon {
    font-size: 28px;
    color: var(--vibrant-red);
    margin-bottom: 16px;
}
.formula-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.formula-card p {
    font-size: 13px;
    color: var(--rosemary);
    line-height: 1.7;
}

/* ---- AUDIENCE ---- */
.audience { background: #f9f5f3; }
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.audience-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}
.audience-card:hover {
    border-color: var(--vibrant-red);
    box-shadow: var(--shadow-md);
}
.audience-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vibrant-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}
.audience-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}
.audience-card p { font-size: 13px; color: var(--gray-60); line-height: 1.6; }

/* ---- WHY ALEX ---- */
.why-alex { background: var(--white); }
.why-alex-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.why-alex-content p {
    font-size: 15px;
    color: var(--gray-80);
    margin-bottom: 20px;
    line-height: 1.7;
}
.why-alex-list { list-style: none; margin-bottom: 32px; }
.why-alex-list li {
    font-size: 15px;
    color: var(--gray-80);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.why-alex-list li::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--vibrant-red);
    flex-shrink: 0;
    position: relative;
}
.why-alex-image { border-radius: var(--radius-lg); overflow: hidden; }
.why-alex-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ---- CTA ---- */
.cta {
    background: var(--dark-coffee);
    color: var(--white);
    padding: 96px 0;
}
.cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.cta h2 { font-size: 38px; font-weight: 700; margin-bottom: 16px; line-height: 1.15; }
.cta p { font-size: 16px; color: var(--gray-40); margin-bottom: 32px; }
.cta-availability { margin-top: 32px; }
.cta-eyebrow { color: var(--wheat); }
.cta-note { color: var(--gray-40); font-size: 14px; }
.cta-form {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.cta-form h3 { font-size: 20px; color: var(--white); margin-bottom: 28px; font-weight: 700; }

/* ---- FORM (base) ---- */
.form-row { margin-bottom: 16px; }
.form-row label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-40);
    margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.04);
    color: var(--white);
    font-size: 14px;
    font-family: var(--font-main);
    transition: border-color 0.25s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--gray-60); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--vibrant-red);
}
.form-row select { appearance: none; }
.form-row select option { background: var(--dark-coffee); color: var(--white); }
.form-row textarea { resize: vertical; min-height: 80px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-privacy { font-size: 11px; color: var(--gray-60); margin-top: 12px; }
.form-privacy a { color: var(--wheat); text-decoration: underline; }
.cta-form .btn { width: 100%; text-align: center; margin-top: 8px; }

/* ---- CF7 overrides ---- */
.cta-form .wpcf7 { margin: 0; }
.cta-form .wpcf7-form-control-wrap { display: block; }

.cta-form .wpcf7-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.04);
    color: var(--white);
    font-size: 14px;
    font-family: var(--font-main);
    transition: border-color 0.25s ease;
}
.cta-form .wpcf7-form-control::placeholder { color: var(--gray-60); }
.cta-form .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--vibrant-red);
}
.cta-form select.wpcf7-form-control { appearance: none; }
.cta-form select.wpcf7-form-control option { background: var(--dark-coffee); color: var(--white); }
.cta-form textarea.wpcf7-form-control { resize: vertical; min-height: 80px; }

.cta-form .wpcf7-submit {
    display: inline-block;
    width: 100%;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    background: var(--vibrant-red);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 8px;
}
.cta-form .wpcf7-submit:hover {
    background: #c82e37;
    box-shadow: 0 4px 16px rgba(231,55,67,0.3);
}
.cta-form .wpcf7-spinner { display: none; }

.cta-form .wpcf7-response-output {
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin: 16px 0 0;
    font-size: 13px;
    color: var(--gray-40);
}
.cta-form .wpcf7-not-valid-tip {
    font-size: 11px;
    color: var(--vibrant-red);
    margin-top: 4px;
}
.cta-form .wpcf7-form.sent .wpcf7-response-output {
    border-color: #4caf50 !important;
    color: #a5d6a7;
}

/* ---- FOOTER ---- */
.footer { background: var(--black); color: var(--gray-40); padding: 48px 0 20px; }
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 32px;
}
.footer-brand img { height: 48px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: var(--gray-60); }
.footer-contact h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.footer-contact p,
.footer-contact a {
    font-size: 13px;
    color: var(--gray-60);
    display: block;
    margin-bottom: 6px;
}
.footer-contact a:hover { color: var(--vibrant-red); }
.footer-partner { text-align: right; }
.footer-partner img { height: 36px; margin-left: auto; margin-bottom: 8px; filter: invert(1); }
.footer-partner p { font-size: 11px; color: var(--gray-60); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: 11px; color: var(--gray-60); }
.footer-bottom a { color: var(--gray-60); font-size: 11px; }
.footer-bottom a:hover { color: var(--vibrant-red); }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-image img { max-height: 380px; }
    .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .models-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .features-layout { grid-template-columns: 1fr; }
    .why-alex-layout { grid-template-columns: 1fr; }
    .cta .container { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr 1fr; }
    .formule-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid img { height: 220px; }
}

@media (max-width: 640px) {
    .header-logos img.alex-logo { height: 32px; }
    .header-logos img.franke-logo { height: 24px; }
    .header-cta { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 56px 0 48px; }
    .hero h1 { font-size: 36px; }
    .hero-tagline { font-size: 18px; }
    .section { padding: 64px 0; }
    .section-title { font-size: 28px; }
    .trust-bar .container { grid-template-columns: 1fr 1fr; }
    .trust-item h3 { font-size: 28px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .formule-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid img { height: 180px; }
    .footer-main { flex-direction: column; }
    .footer-partner { text-align: left; }
    .footer-partner img { margin-left: 0; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-grid { grid-template-columns: 1fr; }
    .cta h2 { font-size: 28px; }
    .features-image img { height: 300px; }
    .why-alex-image img { height: 300px; }
}
