/* ==========================================================================
   Seccoplast - Styles
   Optimized for Performance, Accessibility, and Aesthetics
   ========================================================================== */

:root {
    --bg: #0f0f0f;
    --bg2: #1a1a1a;
    --bg3: #242424;
    --card: #1e1e1e;
    --text: #f5f5f5;
    --text-secondary: #a3a3a3;
    --muted: rgba(245, 245, 245, 0.7);
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    --accent: #e63946;
    --accent2: #ff6b6b;
    --accent-hover: #ff8585;
    --accent-dark: #c1121f;
    --accent-glow: rgba(230, 57, 70, 0.15);
    --green: #25d366;
    --green-dark: #128c7e;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 60px rgba(230, 57, 70, 0.1);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --container: 1140px;
    --container-narrow: 800px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans:
        system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    min-height: 100vh;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent2);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--accent-hover);
}
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Container */
.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}
.container--narrow {
    width: min(var(--container-narrow), calc(100% - 48px));
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 16px;
    background: #fff;
    color: #000;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 1000;
}
.skip-link:focus {
    left: 16px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(15, 15, 15, 0.9);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
}
.brand:hover {
    text-decoration: none;
}
.brand__logo {
    height: 90px;
    width: auto;
}

.nav__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    padding: 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}
.nav__toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav__menu a {
    color: var(--text);
    opacity: 0.85;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 15px;
    transition:
        opacity var(--transition),
        background var(--transition);
}
.nav__menu a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
}
.nav__menu a[aria-current="page"] {
    opacity: 1;
    background: var(--accent-glow);
    color: var(--accent2);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    cursor: pointer;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        filter var(--transition);
}
.btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: #fff;
    text-decoration: none;
}
.btn:active {
    transform: translateY(0);
}
.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--border-light);
    box-shadow: none;
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-sm);
    color: var(--text);
}

.btn--sm {
    padding: 10px 18px;
    font-size: 14px;
}
.btn--lg {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: 14px;
}
.btn--lg svg {
    width: 22px;
    height: 22px;
}

.btn--wa {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}
.btn--wa:hover {
    filter: brightness(1.1);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 80px 0 60px;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(230, 57, 70, 0.08) 0%,
        transparent 60%
    );
}

.hero__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero__badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.hero h1 span {
    color: var(--accent2);
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 32px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Center buttons in panels and sections */
.panel .btn,
.section--muted .btn {
    display: inline-flex;
}
.panel .mt16,
.section--muted .mt16 {
    text-align: center;
}

/* ==========================================================================
   Features Strip
   ========================================================================== */
.section-features {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.feature__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: var(--accent-glow);
    border: 1px solid rgba(230, 57, 70, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature__icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent2);
}

.feature__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.feature__text strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}
.feature__text span {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: 80px 0;
}
.section--alt {
    background: rgba(255, 255, 255, 0.02);
}
.section--cta {
    padding: 100px 0;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(230, 57, 70, 0.1) 0%,
        transparent 60%
    );
}

.section__header {
    margin-bottom: 48px;
}
.section__header--center {
    text-align: center;
}

.section__header h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section__subtitle {
    font-size: 17px;
    color: var(--text-secondary);
}

.section__footer {
    margin-top: 40px;
    text-align: center;
}

/* ==========================================================================
   Product Cards
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--border-light);
}

.product-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--accent-glow);
    border: 1px solid rgba(230, 57, 70, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.product-card__icon svg {
    stroke: var(--accent2);
}

.product-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Link with Arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
}
.link-arrow svg {
    transition: transform var(--transition);
}
.link-arrow:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Process Steps
   ========================================================================== */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process__step {
    text-align: center;
    padding: 32px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
}

.process__number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin: 0 auto 20px;
}

.process__step h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process__step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
    display: grid;
    gap: 12px;
}

.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    overflow: hidden;
}

.faq__question {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition);
}
.faq__question:hover {
    background: rgba(255, 255, 255, 0.03);
}
.faq__question::after {
    content: "+";
    font-size: 22px;
    font-weight: 400;
    color: var(--accent2);
    transition: transform var(--transition);
}
.faq__item[open] .faq__question::after {
    transform: rotate(45deg);
}
.faq__question::-webkit-details-marker {
    display: none;
}

.faq__answer {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ==========================================================================
   CTA Box
   ========================================================================== */
.cta-box {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-box > p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-box__hint {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==========================================================================
   Cards & Panels (for other pages)
   ========================================================================== */
.card,
.panel {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    padding: 28px;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
    text-align: left;
}
.panel:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.panel h3 {
    text-align: center;
    margin-bottom: 16px;
    color: var(--text);
}
.panel .list {
    text-align: left;
}
.panel > p:last-of-type {
    text-align: center;
}

.card__title {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 700;
    color: var(--accent2);
}
.card__line {
    margin: 10px 0;
    color: var(--muted);
    font-size: 15px;
}
.card__line strong {
    color: var(--text);
}
.card__hint {
    margin: 16px 0 0;
    color: var(--text-secondary);
    font-size: 13px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

h2 {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.3px;
}
h3 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
}
p {
    margin: 0 0 12px;
    color: var(--muted);
}
.panel p {
    margin-bottom: 0;
}

.list {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--muted);
}
.list li {
    margin: 8px 0;
}
.list li::marker {
    color: var(--accent);
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form label {
    display: grid;
    gap: 8px;
    margin: 16px 0;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}
.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}
.form input::placeholder,
.form textarea::placeholder {
    color: rgba(245, 245, 245, 0.35);
}
.form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}
.form textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 56px 0 40px;
    margin-top: 0;
    background: var(--bg2);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.footer__about strong,
.footer__contact strong,
.footer__nav strong {
    display: block;
    margin-bottom: 16px;
    color: var(--text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer__about address {
    font-style: normal;
}
.footer__about p,
.footer__about address {
    font-size: 14px;
}

.footer__contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer__nav nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__nav a {
    color: var(--text-secondary);
    font-size: 14px;
}
.footer__nav a:hover {
    color: var(--accent2);
}

.footer__meta {
    text-align: right;
}
.footer__meta p {
    font-size: 13px;
    margin-bottom: 4px;
}

.muted {
    color: var(--muted);
}
.small {
    font-size: 13px;
}
.mt16 {
    margin-top: 16px;
}

/* ==========================================================================
   Page Styles (for inner pages)
   ========================================================================== */
.page {
    padding: 56px 0;
}
.page > h1,
.page > article > h1 {
    margin-bottom: 16px;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: center;
}
.page .lead,
.page > article > .lead {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-align: center;
}
.page .lead strong {
    color: var(--text);
}

.page .section {
    padding: 48px 0;
}
.page .section__header {
    text-align: center;
    margin-bottom: 32px;
}
.page .section--muted {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius);
    padding: 40px;
    margin: 32px 0;
    text-align: center;
}
.page .section--muted .list {
    text-align: left;
    display: inline-block;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-hero {
    padding: 64px 0 48px;
    text-align: center;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(230, 57, 70, 0.08) 0%,
        transparent 60%
    );
}

.contact-hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-hero__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-hero .contact-methods {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero .contact-methods .contact-method {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px;
    padding: 24px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    flex: 1 1 180px !important;
    max-width: 210px;
    min-width: 180px;
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.contact-hero .contact-methods .contact-method:hover {
    transform: translateY(-2px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text);
}

.contact-hero .contact-methods .contact-method--wa {
    background: linear-gradient(
        135deg,
        rgba(37, 211, 102, 0.1),
        rgba(18, 140, 126, 0.05)
    );
    border-color: rgba(37, 211, 102, 0.3);
}
.contact-hero .contact-methods .contact-method--wa:hover {
    border-color: rgba(37, 211, 102, 0.5);
}
.contact-hero .contact-methods .contact-method--wa .contact-method__icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.contact-hero .contact-methods .contact-method__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 12px;
    color: var(--accent2);
}

.contact-hero .contact-methods .contact-method__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.contact-hero .contact-methods .contact-method__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.contact-hero .contact-methods .contact-method__value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* Quote Form */
.quote-form-wrapper {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.quote-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.quote-form-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.quote-form-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

.quote-form__grid {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.quote-form__grid .form-field {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field--full {
    flex: 1 1 100% !important;
    width: 100%;
}

.form-field__label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(245, 245, 245, 0.35);
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-field textarea {
    resize: vertical;
    min-height: 70px;
}

.quote-form__submit {
    width: 100%;
    margin-top: 24px;
}

/* ==========================================================================
   New Footer
   ========================================================================== */
.site-footer .footer-main {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.site-footer .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 0 0 280px;
    max-width: 280px;
}

.site-footer .footer-brand .brand__logo {
    height: 80px;
    width: auto;
}

.site-footer .footer-brand__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.site-footer .footer-links {
    display: flex !important;
    flex-direction: row;
    gap: 48px;
    flex: 1;
    justify-content: flex-end;
}

.site-footer .footer-col {
    min-width: 140px;
}

.site-footer .footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 16px;
}

.site-footer .footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer .footer-col nav a,
.site-footer .footer-col address p {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition);
    margin: 0;
}

.site-footer .footer-col nav a:hover {
    color: var(--accent2);
}

.site-footer .footer-col address {
    font-style: normal;
}

.site-footer .footer-col address p {
    margin-bottom: 8px;
}

.site-footer .footer-col address a {
    color: var(--accent2);
}

.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 13px;
    color: var(--text-secondary);
}

.site-footer .footer-bottom p {
    margin: 0;
}

.site-footer .footer-bottom__tagline {
    color: var(--muted);
}

/* ==========================================================================
   WhatsApp Float Button
   ========================================================================== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.wa-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .process {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer__meta {
        text-align: left;
        grid-column: span 2;
        padding-top: 24px;
        border-top: 1px solid var(--border);
    }
}

@media (max-width: 768px) {
    .container {
        width: calc(100% - 32px);
    }
    .hero {
        padding: 60px 0 48px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero__subtitle {
        font-size: 16px;
    }
    .section {
        padding: 64px 0;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .grid3 {
        grid-template-columns: 1fr;
    }
    .grid2 {
        grid-template-columns: 1fr;
    }
    .process {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .feature {
        padding: 12px;
        background: var(--card);
        border-radius: var(--radius-sm);
        border: 1px solid var(--border);
    }
    .feature__text strong {
        font-size: 12px;
    }
    .feature__text span {
        display: none;
    }
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer__nav nav {
        align-items: center;
    }
    .footer__meta {
        grid-column: auto;
        text-align: center;
    }
    /* Contact page */
    .contact-hero .contact-methods {
        flex-wrap: wrap !important;
    }
    .contact-hero .contact-methods .contact-method {
        flex: 1 1 calc(50% - 8px) !important;
        max-width: calc(50% - 8px);
        min-width: 140px;
    }
    .quote-form-wrapper {
        padding: 24px;
    }
    .quote-form__grid .form-field {
        flex: 1 1 100%;
        min-width: auto;
    }
    .form-field--full {
        width: 100%;
    }
    /* New footer */
    .site-footer .footer-main {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }
    .site-footer .footer-brand {
        align-items: center;
        flex: none;
        max-width: 100%;
    }
    .site-footer .footer-links {
        flex-direction: column !important;
        gap: 32px;
        justify-content: center;
    }
    .site-footer .footer-col {
        min-width: auto;
    }
    .site-footer .footer-col nav {
        align-items: center;
    }
    .site-footer .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .brand__logo {
        height: 60px;
    }
    .site-footer .footer-brand .brand__logo {
        height: 55px;
    }
    .nav__toggle {
        display: flex;
    }
    .nav__menu {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(16px);
        box-shadow: var(--shadow);
    }
    .nav__menu.is-open {
        display: flex;
    }
    .nav__menu a {
        padding: 14px 16px;
        text-align: center;
    }
    .nav {
        position: relative;
    }

    .hero {
        padding: 48px 0 40px;
    }
    .hero h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
    .hero__badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    .hero__cta {
        flex-direction: column;
    }
    .hero__cta .btn {
        width: 100%;
    }

    .section {
        padding: 48px 0;
    }
    .section-features {
        padding: 32px 0;
    }
    .section__header {
        margin-bottom: 32px;
    }

    .process {
        grid-template-columns: 1fr;
    }
    .process__step {
        padding: 24px 20px;
    }

    .product-card {
        padding: 24px;
    }

    .btn--lg {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
    }

    .wa-float {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

@media (prefers-contrast: high) {
    :root {
        --border: rgba(255, 255, 255, 0.35);
        --muted: rgba(245, 245, 245, 0.95);
    }
    .btn {
        border: 2px solid currentColor;
    }
}

@media print {
    body {
        background: white;
        color: black;
    }
    .site-header,
    .nav__toggle,
    .btn,
    .skip-link,
    .wa-float {
        display: none;
    }
    a {
        color: black;
        text-decoration: underline;
    }
    .card,
    .panel,
    .product-card {
        border: 1px solid #ccc;
        background: white;
    }
}
