/* Modern Service Landing Page */

/* CSS Reset & Variables */
:root {
    /* Brand palette */
    --primary-color: #0369a1;        /* Deep Teal - trust anchor */
    --primary-dark: #0c4a6e;         /* Darker Teal - footer, hero bg */
    --primary-light: #38bdf8;        /* Sky Blue - accents */
    --secondary-color: #f97316;      /* Action Orange - CTAs only */
    --accent-gold: #fbbf24;          /* Urgency Amber - 40min stamp only */
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0c4a6e;
    --border-color: #e2e8f0;
    --border-dark: #94a3b8;
    /* Subtle modern shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px rgba(3,105,161,0.12), 0 4px 10px rgba(3,105,161,0.08);
    --shadow-xl: 0 20px 40px rgba(3,105,161,0.15), 0 8px 16px rgba(3,105,161,0.1);
    --shadow-cta: 0 4px 14px rgba(249,115,22,0.35);
    --shadow-stamp: 0 4px 12px rgba(251,191,36,0.45);
    /* Rounded modern shape */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;
    /* Typography */
    --font-display: 'Manrope', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Sticky Navigation */
.nav-bar {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    flex-shrink: 0;
    filter: drop-shadow(0 3px 8px rgba(217, 119, 6, 0.4));
    transition: all 0.4s ease;
}

/* Vintage warm glow on hover */
.nav-brand:hover .brand-logo {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(217, 119, 6, 0.6))
            drop-shadow(0 0 20px rgba(217, 119, 6, 0.3));
}

.nav-brand:hover .shutter-slats {
    animation: vintagePulse 1.2s ease-in-out;
}

.nav-brand:hover .quality-badge {
    animation: badgeGlow 1s ease-in-out infinite;
}

/* Vintage pulse animation - subtle lamp-like glow */
@keyframes vintagePulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

@keyframes badgeGlow {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(217, 119, 6, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(217, 119, 6, 0.8));
    }
}

@keyframes yearShine {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.8;
    }
}

/* Arrow bounce animation */
@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-2px);
        opacity: 1;
    }
}

/* Quality icons pulse animation */
@keyframes qualityPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.9;
    }
}

/* Continuous subtle animation for logo */
.brand-logo .shutter-slats {
    animation: subtleShutter 3s ease-in-out infinite;
}

@keyframes subtleShutter {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.95;
        transform: translateY(-1px);
    }
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.brand-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-phone:hover {
    color: var(--primary-color);
}

.nav-phone svg {
    color: var(--primary-color);
}

.cta-button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-cta);
    min-height: 48px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249,115,22,0.45);
}

/* Hero Section */
.hero-section {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
    color: white;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.hero-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.25);
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease-out;
}

.hero-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-subtext {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* Quick Contact Form */
.quick-contact {
    padding: 0 2rem 4rem;
    margin-top: -2rem;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.contact-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 1rem;
}

.form-field {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.submit-button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-cta);
    min-height: 52px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249,115,22,0.45);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Section Containers */
.section-container, .section-container-narrow {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-container-narrow {
    max-width: 900px;
}

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

.section-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-desc {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Process Timeline */
.process-section {
    padding: 5rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 35px;
    bottom: 35px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px var(--bg-white), 0 0 0 10px rgba(16, 185, 129, 0.2);
    z-index: 1;
}

.timeline-content {
    background: var(--bg-white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    flex: 1;
    margin-top: 0.75rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-gray);
}

/* Advantages Section */
.advantages-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.advantage-box {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.advantage-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    font-weight: bold;
}

.advantage-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.advantage-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: calc(33.333% - 1.333rem);
    aspect-ratio: 4/3;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-slide img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-gray);
}

.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    pointer-events: all;
}

.gallery-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--bg-white);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-gray);
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtext {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-phones {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-phone-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.cta-phone-link:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.footer-logo {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-text, .footer-location {
    margin-bottom: 0.5rem;
}

.footer-label {
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.footer-contact a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-slide {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-photo {
        max-width: 400px;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

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

    .nav-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .brand-logo {
        width: 32px;
        height: 32px;
    }

    .brand-tagline {
        display: none;
    }

    .brand-name {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-phones {
        flex-direction: column;
    }

    .gallery-slide {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 4rem 1rem 3rem;
    }

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

    .hero-content {
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .shutters-content {
        grid-template-columns: 1fr !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .trust-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

/* ========================================
   Trust Badges Section - Classic Professional Style
   ======================================== */

.trust-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border-top: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 0;
}

.trust-badge {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.trust-badge:hover::before {
    opacity: 1;
}

.trust-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-badge h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.trust-badge p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========================================
   About Shutters Section
   ======================================== */

.about-shutters-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    border-top: 1px solid var(--border-color);
}

.shutters-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.shutter-type-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.shutter-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.shutter-type-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1.5rem 2rem;
    color: white;
    border-bottom: 3px solid var(--secondary-color);
}

.shutter-type-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.shutter-type-body {
    padding: 2rem;
}

.shutter-type-body p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.shutter-type-body h4 {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.shutter-benefits-list {
    list-style: none;
    margin: 1rem 0;
}

.shutter-benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.shutter-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.shutter-benefits-list li strong {
    color: var(--text-dark);
}

.control-types-list {
    list-style: none;
    margin: 1rem 0;
}

.control-types-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.control-types-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.control-types-list li strong {
    color: var(--text-dark);
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.pricing-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
    box-shadow: var(--shadow-lg);
    background: #ffffff;
    position: relative;
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 40px rgba(249,115,22,0.18);
    border-color: var(--secondary-color);
}

.pricing-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    height: 100px;
}

.pricing-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    min-height: 3rem;
    line-height: 1.4;
}

.pricing-base {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pricing-materials {
    border-top: 2px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.pricing-materials h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.pricing-materials ul {
    list-style: none;
}

.pricing-materials ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.pricing-materials ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.pricing-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid #f59e0b;
}

.pricing-footer p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-footer strong {
    color: #f59e0b;
}

/* ── Messenger buttons in nav ── */
.messenger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    flex-shrink: 0;
}
.messenger-btn:hover { transform: scale(1.15); opacity: 0.9; }
.viber-btn  { background: #7360f2; color: #fff; }
.telegram-btn { background: #2aabee; color: #fff; }

/* ── Problem identification section ── */
.problem-section {
    padding: 4rem 0;
    background: var(--bg-light);
}
.section-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin-top: 0.5rem;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.problem-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    font-family: 'Open Sans', sans-serif;
}
.problem-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.problem-card--other {
    border-style: dashed;
    background: #f8fafc;
}
.problem-icon { font-size: 1.75rem; flex-shrink: 0; }
.problem-text { display: flex; flex-direction: column; gap: 4px; }
.problem-text strong { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; line-height: 1.3; }
.problem-price { font-size: 0.8rem; color: var(--primary-color); font-weight: 700; }

/* Badge shown in quick-contact after problem click */
.selected-problem-badge {
    display: none;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ── Testimonials section ── */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border-left: 4px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
}
.testimonial-text {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.testimonial-author strong {
    color: var(--text-dark);
    font-size: 0.875rem;
}
.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* ── CTA messenger links ── */
.cta-messengers {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.cta-messengers-label {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
}
.cta-messenger-links {
    display: flex;
    gap: 1rem;
}
.cta-messenger-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    color: #fff;
}
.cta-messenger-link:hover { transform: translateY(-2px); opacity: 0.9; }
.cta-viber    { background: #7360f2; }
.cta-telegram { background: #2aabee; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .shutters-content {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .messenger-btn {
        display: none;
    }
    .shutter-type-header h3 {
        font-size: 1.25rem;
    }

    .pricing-title {
        font-size: 1.125rem;
        min-height: auto;
    }
}

/* ── Urgency Stamp ── */
.urgency-stamp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-stamp);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.5s ease-out;
}

.urgency-stamp .stamp-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.urgency-stamp .stamp-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

/* Stamp variant on dark bg (inside navy sections) */
.urgency-stamp--dark {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Hero phone — large tappable display element */
.hero-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 1.5rem 0 1rem;
    transition: opacity 0.2s;
    min-height: 56px;
}

.hero-phone-link:hover {
    opacity: 0.85;
}

.hero-phone-link svg {
    flex-shrink: 0;
}
