/* ============================================================
   SkupNieruchomosci24.pl - Main Stylesheet
   Premium Real Estate Buying Company
   BEM-based class naming to match Twig templates
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
    /* Brand Colors */
    --navy: #1B2A4A;
    --navy-light: #2A3F6A;
    --navy-dark: #111D35;
    --gold: #C9A84C;
    --gold-light: #D4B965;
    --gold-dark: #B0912F;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F9FC;
    --light-gray: #F0F1F5;
    --dark-text: #1A1A2E;
    --body-text: #4A4A5A;
    --muted-text: #8A8A9A;
    --border: #E0E2E8;

    /* Status */
    --success: #27AE60;
    --danger: #E74C3C;
    --warning: #F39C12;
    --info: #3498DB;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(27, 42, 74, 0.06);
    --shadow-md: 0 4px 12px rgba(27, 42, 74, 0.08);
    --shadow-lg: 0 8px 30px rgba(27, 42, 74, 0.12);
    --shadow-xl: 0 16px 48px rgba(27, 42, 74, 0.16);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--body-text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-text);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.65rem, 4vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.35rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-muted { color: var(--muted-text); }

/* ------------------------------------------------------------
   4. LAYOUT
   ------------------------------------------------------------ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ------------------------------------------------------------
   5. SECTIONS
   ------------------------------------------------------------ */
.section {
    padding: 5rem 0;
}

.section--light {
    background-color: var(--off-white);
}

.section--navy {
    background-color: var(--navy);
    color: var(--white);
}

.section--navy .section__title,
.section--navy .section__subtitle,
.section--navy h2, .section--navy h3 {
    color: var(--white);
}

.section--cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header--light .section__title,
.section-header--light .section__subtitle {
    color: var(--white);
}

.section__title {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.section__subtitle {
    max-width: 640px;
    margin: 0 auto;
    color: var(--muted-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-header--light .section__subtitle {
    color: rgba(255, 255, 255, 0.75);
}

/* ------------------------------------------------------------
   6. HEADER & NAVIGATION
   ------------------------------------------------------------ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-base);
    background: transparent;
}

.header.scrolled {
    background: rgba(27, 42, 74, 0.97);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    z-index: 1001;
}

.header__logo:hover {
    color: var(--white);
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    font-weight: 400;
}

.logo-text strong {
    font-weight: 700;
    color: var(--white);
}

.logo-24 {
    color: var(--gold);
    font-weight: 800;
}

.logo-text--light {
    color: rgba(255, 255, 255, 0.8);
}

/* Navigation */
.header__nav {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__item {
    position: relative;
}

.nav__link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav__link:hover {
    color: var(--gold);
}

.nav__link--dropdown svg {
    transition: transform var(--transition-fast);
}

.nav__item--dropdown:hover .nav__link--dropdown svg {
    transform: rotate(180deg);
}

/* Dropdown menu */
.nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: -1rem;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition-base);
    z-index: 100;
}

/* Desktop only: hover to open dropdown */
@media (min-width: 992px) {
    .nav__item--dropdown:hover .nav__dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Click-based open (works on both mobile and desktop) */
.nav__item--dropdown.open .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown li a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--dark-text);
    font-size: 0.88rem;
    transition: all var(--transition-fast);
}

.nav__dropdown li a:hover {
    background: var(--off-white);
    color: var(--gold);
}

.nav__dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 0.4rem 0;
}

/* Header phone & CTA */
.header__phone {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color var(--transition-fast);
}

.header__phone:hover {
    color: var(--gold);
}

.header__cta {
    font-size: 0.88rem;
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 4px;
    cursor: pointer;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ------------------------------------------------------------
   7. BUTTONS
   ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    color: var(--white);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 0.45rem 1.1rem;
    font-size: 0.82rem;
}

/* ------------------------------------------------------------
   8. HERO SECTION
   ------------------------------------------------------------ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: var(--navy);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, #0f1a30 50%, var(--navy-dark) 100%);
    background-size: cover;
    background-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(27, 42, 74, 0.6) 0%,
        rgba(27, 42, 74, 0.75) 50%,
        rgba(27, 42, 74, 0.9) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 6rem 1.25rem 3rem;
}

.hero__badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.hero__title {
    color: var(--white);
    font-size: clamp(2.2rem, 5.5vw, 3.75rem);
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero__title .text-gold {
    color: var(--gold);
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.25rem;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s infinite;
    opacity: 0.6;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ------------------------------------------------------------
   9. SERVICE CARDS
   ------------------------------------------------------------ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.services-grid--small {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: all var(--transition-base);
    display: block;
    color: var(--dark-text);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    color: var(--dark-text);
    border-color: var(--gold);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gold);
    transition: all var(--transition-base);
}

.service-card__icon i,
.service-card__icon svg {
    width: 28px;
    height: 28px;
}

.service-card:hover .service-card__icon {
    background: var(--gold);
    color: var(--white);
}

.service-card__title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.service-card__text {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap var(--transition-fast);
}

.service-card:hover .service-card__link {
    gap: 0.6rem;
}

.service-card--small {
    padding: 1.5rem;
    text-align: center;
}

.service-card--small .service-card__icon {
    margin: 0 auto 1rem;
}

/* Services extra tags */
.services-extra {
    text-align: center;
    margin-top: 2.5rem;
}

.services-extra p {
    color: var(--muted-text);
    font-weight: 500;
    margin-bottom: 1rem;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.tag:hover {
    background: var(--gold-light);
    color: var(--white);
    transform: translateY(-2px);
}

.tag--outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--border);
}

.tag--outline:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ------------------------------------------------------------
   10. STEPS / HOW IT WORKS
   ------------------------------------------------------------ */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    counter-reset: step;
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    border: 2px solid rgba(201, 168, 76, 0.3);
}

.step__content {
    max-width: 260px;
    margin: 0 auto;
}

.step__title {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* connector lines between steps */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -1rem;
    width: calc(100% - 56px);
    height: 2px;
    background: rgba(201, 168, 76, 0.25);
    transform: translateX(50%);
}

/* ------------------------------------------------------------
   11. BENEFITS
   ------------------------------------------------------------ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.benefit:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.benefit__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all var(--transition-base);
}

.benefit:hover .benefit__icon {
    background: var(--gold);
    transform: scale(1.05);
}

.benefit:hover .benefit__icon svg {
    stroke: var(--white);
}

.benefit__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit__text {
    font-size: 0.9rem;
    color: var(--muted-text);
    line-height: 1.6;
}

/* ------------------------------------------------------------
   12. BRANCHES / ODDZIALY
   ------------------------------------------------------------ */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.branches-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.branch-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

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

.branch-card--large {
    padding: 2rem;
}

.branch-card__name {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.branch-card__address {
    color: var(--muted-text);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.branch-card__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.branch-card__phone:hover {
    color: var(--gold-dark);
}

.branch-card__phone--large {
    font-size: 1.15rem;
}

/* Map */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 2.5rem;
}

/* ------------------------------------------------------------
   13. FAQ
   ------------------------------------------------------------ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-item__question:hover {
    color: var(--gold);
}

.faq-item__question svg {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--gold);
}

.faq-item.active .faq-item__question svg {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--body-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ------------------------------------------------------------
   14. CTA SECTION
   ------------------------------------------------------------ */
.cta__title {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ------------------------------------------------------------
   15. FORM SECTION
   ------------------------------------------------------------ */
.form-section {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    border: 1px solid var(--border);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header__title {
    font-size: 1.75rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.form-header__subtitle {
    color: var(--muted-text);
    font-size: 1rem;
}

/* Multi-step form */
.lead-form {
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.form-step__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.4rem;
}

.form-group .optional {
    font-weight: 400;
    color: var(--muted-text);
    font-size: 0.8rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--dark-text);
    background: var(--white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-text);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A8A9A' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input.error,
.form-group select.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Form navigation buttons */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.form-next,
.form-prev {
    cursor: pointer;
}

/* Progress bar */
.form-progress {
    margin-top: 2rem;
    height: 4px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.form-progress__bar {
    height: 100%;
    background: var(--gold);
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* Consents */
.form-consents {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.82rem;
    color: var(--body-text);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--gold);
    text-decoration: underline;
}

/* Success state */
.form-success {
    text-align: center;
    padding: 3rem 1rem;
}

.form-success svg {
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--success);
}

.form-success p {
    color: var(--body-text);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Calculator */
.calculator-result {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.calculator__title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.calculator__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.calculator__col {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--border);
}

.calculator__col h5 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.calculator__col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calculator__col ul li {
    font-size: 0.88rem;
    color: var(--body-text);
    display: flex;
    justify-content: space-between;
}

.calculator__col--ours {
    border-color: var(--gold);
    position: relative;
}

.calculator__badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.calculator__disclaimer {
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted-text);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ------------------------------------------------------------
   16. PAGE HERO (service/city/about/contact pages)
   ------------------------------------------------------------ */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
}

.page-hero--city {
    padding: 8rem 0 4rem;
}

.page-hero__content {
    max-width: 700px;
}

.page-hero__badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.page-hero__title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.page-hero__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--navy);
    padding: 5rem 0 0.75rem;
    font-size: 0.85rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.65);
}

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

.breadcrumbs__sep {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

.breadcrumbs span:last-child {
    color: rgba(255, 255, 255, 0.9);
}

/* Subtypes */
.subtypes-grid {
    text-align: center;
}

.subtypes__label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.subtypes__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

/* Content text (rich content areas) */
.content-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--body-text);
}

.content-text h2, .content-text h3 {
    margin-top: 2.5rem;
}

.content-text ul, .content-text ol {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-text ul li, .content-text ol li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.content-text a {
    color: var(--gold);
    text-decoration: underline;
}

/* City links */
.city-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.city-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
    transition: all var(--transition-base);
}

.city-link:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ------------------------------------------------------------
   17. ABOUT PAGE
   ------------------------------------------------------------ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}

.value-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

.value-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.value-card p {
    font-size: 0.92rem;
    color: var(--body-text);
    line-height: 1.6;
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0 2.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 0.88rem;
    color: var(--muted-text);
    font-weight: 500;
}

.company-info {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    margin: 1.5rem 0;
}

.company-info p {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

/* ------------------------------------------------------------
   18. CONTACT PAGE
   ------------------------------------------------------------ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details h3 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-hours {
    color: var(--muted-text);
}

.contact-form-wrapper {
    /* On contact page, form doesn't need extra section wrapping */
}

.contact-form-wrapper .form-section {
    padding: 0;
    background: none;
}

.contact-form-wrapper .form-wrapper {
    box-shadow: var(--shadow-md);
}

/* ------------------------------------------------------------
   19. FOOTER
   ------------------------------------------------------------ */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer__logo:hover {
    color: var(--white);
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__phone-big a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 700;
    transition: color var(--transition-fast);
}

.footer__phone-big a:hover {
    color: var(--gold-light);
}

.footer__heading {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__links li {
    font-size: 0.88rem;
}

.footer__links li a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer__links li a:hover {
    color: var(--gold);
}

.footer__links li strong {
    color: rgba(255, 255, 255, 0.85);
    display: block;
    font-size: 0.85rem;
}

.footer__company {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__company p {
    margin-bottom: 0.15rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__bottom p {
    margin-bottom: 0;
}

/* ------------------------------------------------------------
   20. FLOATING PHONE CTA
   ------------------------------------------------------------ */
.floating-phone {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
    z-index: 900;
    transition: all var(--transition-base);
    animation: floatPulse 2s infinite;
}

.floating-phone:hover {
    background: var(--gold-light);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.45);
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(201, 168, 76, 0.55); }
}

/* ------------------------------------------------------------
   21. COOKIE BANNER
   ------------------------------------------------------------ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner__inner p {
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.cookie-banner__inner a {
    color: var(--gold);
    text-decoration: underline;
}

/* ------------------------------------------------------------
   22. ANIMATE ON SCROLL (disabled - content always visible)
   ------------------------------------------------------------ */
.animate-on-scroll {
    /* No animation - always visible */
}

/* ------------------------------------------------------------
   23. ADMIN PANEL
   ------------------------------------------------------------ */
.admin-body {
    background: var(--off-white);
    min-height: 100vh;
}

/* Admin login */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.admin-login__card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    width: 100%;
    max-width: 420px;
}

.admin-login__logo {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-login__logo svg {
    margin: 0 auto 1rem;
    display: block;
}

.admin-login__logo h1 {
    font-size: 1.5rem;
    color: var(--navy);
}

.alert {
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert--danger {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Admin layout */
.admin {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-header__left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-header__left h1 {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: var(--dark-text);
}

.admin-header__right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Admin stats */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.admin-stat {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    transition: all var(--transition-fast);
    cursor: pointer;
    display: block;
    color: var(--dark-text);
}

.admin-stat:hover {
    border-color: var(--gold);
    color: var(--dark-text);
}

.admin-stat--active {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.admin-stat__number {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.admin-stat__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-stat--new .admin-stat__number { color: var(--info); }
.admin-stat--contacted .admin-stat__number { color: var(--warning); }
.admin-stat--progress .admin-stat__number { color: #8E44AD; }
.admin-stat--offer .admin-stat__number { color: var(--gold); }
.admin-stat--won .admin-stat__number { color: var(--success); }
.admin-stat--lost .admin-stat__number { color: var(--danger); }

/* Admin table */
.admin-table-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
    border: 1px solid var(--border);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.admin-table thead {
    background: var(--off-white);
}

.admin-table th {
    padding: 0.85rem 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.admin-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--light-gray);
    vertical-align: middle;
}

.admin-table tbody tr:hover {
    background: var(--off-white);
}

.admin-table a {
    color: var(--gold);
    font-weight: 500;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge--new { background: rgba(52, 152, 219, 0.12); color: var(--info); }
.badge--contacted { background: rgba(243, 156, 18, 0.12); color: var(--warning); }
.badge--in_progress { background: rgba(142, 68, 173, 0.12); color: #8E44AD; }
.badge--offer_sent { background: rgba(201, 168, 76, 0.12); color: var(--gold-dark); }
.badge--won { background: rgba(39, 174, 96, 0.12); color: var(--success); }
.badge--lost { background: rgba(231, 76, 60, 0.12); color: var(--danger); }
.badge--lg { padding: 0.4rem 1rem; font-size: 0.85rem; }

/* Admin detail page */
.admin-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.admin-detail__main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-detail__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.admin-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--light-gray);
}

.detail-table {
    width: 100%;
    border-collapse: collapse;
}

.detail-table td {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--light-gray);
    vertical-align: top;
}

.detail-table td:first-child {
    color: var(--muted-text);
    font-weight: 500;
    width: 40%;
    padding-right: 1rem;
}

.detail-table a {
    color: var(--gold);
}

/* Status form */
.status-form {
    margin-top: 1.25rem;
}

.status-form .form-group {
    margin-bottom: 1rem;
}

/* Events / History list */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--light-gray);
}

.event:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event__type {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.event__desc {
    font-size: 0.88rem;
    color: var(--body-text);
}

.event__date {
    font-size: 0.78rem;
    color: var(--muted-text);
}

/* ------------------------------------------------------------
   24. UTILITY CLASSES
   ------------------------------------------------------------ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ------------------------------------------------------------
   25. RESPONSIVE - Mobile first adjustments
   ------------------------------------------------------------ */

/* <= 1200px */
@media (max-width: 1200px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .footer__col:last-child {
        grid-column: 1 / -1;
    }
    .admin-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* <= 992px */
@media (max-width: 992px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right var(--transition-base);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
        z-index: 1100;
        overflow-y: auto;
    }

    .header__nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav__item {
        width: 100%;
    }

    .nav__link {
        padding: 0.85rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
    }

    .nav__dropdown {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-md);
        margin: 0.25rem 0 0.5rem;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        min-width: 0;
    }

    .nav__item--dropdown.open .nav__dropdown {
        max-height: 800px;
        padding: 0.5rem 0;
    }

    .nav__dropdown li {
        list-style: none;
    }

    .nav__dropdown li a {
        color: rgba(255, 255, 255, 0.7) !important;
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
        display: block;
    }

    .nav__dropdown li a:hover {
        color: var(--gold) !important;
        background: rgba(255, 255, 255, 0.05);
    }

    .nav__dropdown-divider {
        height: 1px;
        background: rgba(255, 255, 255, 0.08);
        margin: 0.25rem 0;
    }

    .header__phone {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid--small {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Steps */
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step:not(:last-child)::after {
        display: none;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Branches */
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer__col--brand {
        grid-column: 1 / -1;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Admin */
    .admin-detail {
        grid-template-columns: 1fr;
    }

    .admin-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Stats grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* <= 768px */
@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }

    .hero__content {
        padding: 5rem 1rem 2.5rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid--small {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .step__number {
        flex-shrink: 0;
    }

    .step__content {
        margin: 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .branches-grid {
        grid-template-columns: 1fr;
    }

    .branches-list {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .calculator__grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-hero__actions {
        flex-direction: column;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-header__right {
        flex-wrap: wrap;
    }

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }

    /* Floating phone - icon only on small screens */
    .floating-phone span {
        display: none;
    }

    .floating-phone {
        padding: 1rem;
        border-radius: 50%;
    }
}

/* <= 576px */
@media (max-width: 576px) {
    .hero__title {
        font-size: 1.85rem;
    }

    .hero__subtitle {
        font-size: 0.95rem;
    }

    .hero__badge {
        font-size: 0.78rem;
        padding: 0.4rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .form-wrapper {
        padding: 1.5rem 1rem;
        border-radius: var(--radius-lg);
    }

    .form-nav {
        flex-direction: column-reverse;
    }

    .form-nav .btn {
        width: 100%;
    }

    .btn-lg {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    .services-grid--small {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat__number {
        font-size: 2rem;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-stat__number {
        font-size: 1.35rem;
    }

    .page-hero__title {
        font-size: 1.75rem;
    }

    .cta__title {
        font-size: 1.5rem;
    }
}
