/* ========================================
   ProKitchen Repair Co. - Enhanced Styles
   Modern, Animated, SEO-Optimized
   ======================================== */

:root {
    --brand-dark: #222A4E;
    --brand-red: #DA2719;
    --brand-gold: #FFD700;
    --border: #E0E0E0;
    --text: #12141D;
    --muted: #666;
    --container-max: 1296px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    color: var(--text);
}

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

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

.full-width-bg { width: 100%; }
.bg-dark { background: var(--brand-dark); }
.bg-red { background: var(--brand-red); }
.bg-white { background: #fff; }

/* ========================================
   ACCESSIBILITY
   ======================================== */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 10px;
    background: #fff;
    color: #000;
    padding: 10px 12px;
    border-radius: 8px;
    z-index: 999;
}
.skip-link:focus { left: 10px; }

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

:focus-visible {
    outline: 3px solid rgba(218, 39, 25, 0.5);
    outline-offset: 2px;
}

/* Honeypot */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* ========================================
   STICKY HEADER
   ======================================== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(34, 42, 78, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    padding: 12px 0;
}

.sticky-header.visible {
    transform: translateY(0);
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.header-brand {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-rating {
    color: var(--brand-gold);
    font-weight: 600;
    font-size: 14px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-red);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(218, 39, 25, 0.3);
}

.header-phone:hover {
    background: #c01f13;
    transform: translateY(-2px);
    box-shadow: 0 6px provepx 20px rgba(218, 39, 25, 0.4);
}

.phone-icon {
    font-size: 20px;
}

/* ========================================
   FLOATING CALL BUTTON
   ======================================== */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--brand-red);
    color: #fff;
    padding: 18px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(218, 39, 25, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-call:hover {
    background: #c01f13;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 35px rgba(218, 39, 25, 0.5);
}

.floating-icon {
    font-size: 24px;
    animation: ring 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(218, 39, 25, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(218, 39, 25, 0.6); }
}

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

/* ========================================
   EMERGENCY BANNER
   ======================================== */
.emergency-banner {
    background: linear-gradient(135deg, var(--brand-red) 0%, #ff4538 100%);
    color: #fff;
    padding: 14px 0;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    animation: slideDown 0.5s ease;
    position: relative;
    z-index: 999;
}

.emergency-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 60px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-h1 {
    color: #fff;
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease;
}

.hero-sub {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
    line-height: 30px;
    max-width: 720px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-highlight {
    background: rgba(218, 39, 25, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.hero-name {
    width: 100%;
    max-width: 854px;
    height: auto;
    margin-top: 8px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-icon {
    color: #4CAF50;
    font-weight: 700;
}

.hero-contact {
    margin-top: 28px;
    margin-bottom: 20px;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.08);
    padding: 24px 28px;
    border-radius: 16px;
    border-left: 4px solid var(--brand-red);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.contact-link-primary {
    display: block;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-link-primary:hover {
    color: var(--brand-gold);
    transform: translateX(5px);
}

.contact-link-secondary {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-link-secondary:hover {
    color: #fff;
    transform: translateX(5px);
}

.hero-areas {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 24px;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease 0.4s backwards;
}

.hero-logo {
    width: 100%;
    max-width: 562px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

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

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

/* ========================================
   SECTIONS
   ======================================== */
.section-pad { padding: 80px 0; }

.section-title {
    text-align: center;
    font-family: "Clash Display", Inter, sans-serif;
    font-size: 72px;
    line-height: 80px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 50px;
    font-weight: 500;
}

.text-dark { color: var(--brand-dark); }
.text-light { color: #fff; }
.text-red { color: var(--brand-red); }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.body-text {
    opacity: 0.85;
    color: var(--text);
    font-size: 20px;
    line-height: 32px;
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================
   WHO WE ARE - VALUE BOXES
   ======================================== */
.who-we-are-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-box {
    background: #f9f9f9;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--brand-red);
    transition: all 0.3s ease;
}

.value-box:hover {
    background: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.value-title {
    color: var(--brand-dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-text {
    color: #555;
    font-size: 15px;
    line-height: 22px;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
    background: linear-gradient(180deg, #f9f9f9 0%, #fff 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--brand-red);
}

.review-stars {
    color: var(--brand-gold);
    font-size: 20px;
    margin-bottom: 16px;
}

.review-text {
    color: #333;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 2px solid #f0f0f0;
    padding-top: 16px;
}

.review-author strong {
    color: var(--brand-dark);
    font-size: 16px;
}

.review-author span {
    color: var(--muted);
    font-size: 14px;
}

/* ========================================
   FEATURES
   ======================================== */
.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 40px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 96px;
    height: auto;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    color: #fff;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: "Albert Sans", Inter, sans-serif;
}

.feature-text {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 28px;
}

/* ========================================
   SERVICE AREAS
   ======================================== */
.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.area-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--brand-red);
    transition: all 0.3s ease;
}

.area-card:hover {
    background: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.area-title {
    color: var(--brand-dark);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.area-text {
    color: #555;
    font-size: 16px;
    line-height: 26px;
}

/* ========================================
   SERVICES
   ======================================== */
.service-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.service-row:hover {
    padding-left: 20px;
    border-left: 4px solid var(--brand-red);
    background: rgba(255, 255, 255, 0.03);
}

.service-row-last { border-bottom: none; }

.service-num {
    color: var(--brand-red);
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    min-width: 60px;
}

.service-title {
    color: #fff;
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-text {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 28px;
    max-width: 980px;
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
    color: #000;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-item {
    margin-bottom: 24px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid var(--brand-dark);
    transition: all 0.3s ease;
}

.pricing-item:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.pricing-featured {
    border-left-color: var(--brand-red);
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
}

.pricing-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--brand-dark);
    font-size: 20px;
}

.pricing-detail {
    color: #555;
    font-size: 18px;
    margin-bottom: 4px;
}

.pricing-detail strong {
    color: var(--brand-red);
    font-size: 24px;
}

.pricing-note {
    font-size: 14px;
    color: var(--muted);
    margin-top: 8px;
    font-style: italic;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch; /* ✅ обе колонки одной высоты */
}

.contact-info,
.contact-card {
    height: 100%; /* ✅ гарантируем, что блок заполнит высоту строки грида */
}


.contact-info {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2d3558 100%);
    padding: 40px;
    border-radius: 16px;
    color: #fff;
}

.contact-info-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 32px;
}

.contact-info-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-info-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-value {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: block;
}

a.contact-info-value:hover {
    color: var(--brand-gold);
}

.contact-info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.info-badge {
    background: rgba(218, 39, 25, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(218, 39, 25, 0.3);
}

.contact-card {
    width: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 40px;
}

.contact-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 12px;
    text-align: left;
}

.contact-subtitle {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 24px;
}

.contact-phone-link {
    color: var(--brand-red);
    font-weight: 700;
    text-decoration: none;
}

.contact-phone-link:hover {
    text-decoration: underline;
}

.field {
    margin-bottom: 16px;
}

input, textarea {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 2px solid var(--border);
    font-size: 16px;
    background: #F9F9F9;
    font-family: "Open Sans", Inter, sans-serif;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(218, 39, 25, 0.1);
}

.invalid {
    border-color: #f44336 !important;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button#submitBtn {
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--brand-red) 0%, #ff4538 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(218, 39, 25, 0.3);
}

button#submitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(218, 39, 25, 0.4);
}

button#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.status {
    margin-top: 14px;
    text-align: center;
    font-family: "Open Sans", Inter, sans-serif;
    font-size: 16px;
    display: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid transparent;
}

.status.show { display: block; }

.status.success {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #4CAF50;
}

.status.error {
    background: #ffebee;
    color: #c62828;
    border-color: #f44336;
}

.noscript {
    margin-top: 12px;
    font-size: 14px;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--brand-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item[open] {
    border-color: var(--brand-red);
    background: #fff5f5;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 18px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 28px;
    color: var(--brand-red);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item p {
    margin-top: 12px;
    color: #333;
    opacity: 0.9;
    line-height: 28px;
    font-size: 16px;
}

/* ========================================
   BANNER
   ======================================== */
.banner {
    padding: 60px 0;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    overflow: hidden;
}

.banner-track {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.banner-row {
    display: flex;
    align-items: center;
    padding: 0 40px;
    gap: 40px;
}

.banner-row img {
    width: 65px;
    height: 65px;
}

.banner-row span {
    color: var(--brand-dark);
    font-size: 64px;
    font-family: "Clash Display", Inter, sans-serif;
    font-weight: 600;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 40px 0;
}

.footer-line {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}

.footer-nap {
    color: rgba(255,255,255,0.85);
    text-align: center;
    font-style: normal;
    line-height: 28px;
    font-size: 15px;
}

.footer-nap a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nap a:hover {
    color: var(--brand-gold);
}

.footer-copy {
    opacity: 0.8;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin-top: 16px;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .container { padding: 0 15px; }

    /* Header */
    .sticky-header { padding: 10px 0; }
    .header-brand { font-size: 18px; }
    .header-rating { display: none; }
    .header-phone { padding: 10px 18px; font-size: 16px; }

    /* Floating button */
    .floating-call {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 16px;
    }
    .floating-text { display: none; }

    /* Emergency banner */
    .emergency-banner { font-size: 14px; padding: 10px 0; }

    /* Hero */
    .hero-grid {
        display: flex;
        flex-direction: column;
    }
    .hero-logo-wrap {
        order: 1;
        margin-bottom: 24px;
    }
    .hero-logo {
        max-width: 280px;
        margin: 0 auto;
    }
    .hero-h1 {
        font-size: 32px;
        line-height: 40px;
        text-align: left;
    }
    .hero-sub {
        font-size: 18px;
        line-height: 26px;
    }
    .hero-contact {
        padding: 20px;
        margin-top: 20px;
    }
    .contact-link-primary {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .contact-link-secondary {
        font-size: 16px;
    }
    .hero-areas {
        font-size: 14px;
        line-height: 20px;
    }
    .trust-badges {
        gap: 10px;
        margin-top: 16px;
    }
    .trust-item {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Sections */
    .section-title {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 20px;
    }
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .two-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .who-we-are-left {
        gap: 16px;
    }

    .value-box {
        padding: 20px;
    }

    .value-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .value-title {
        font-size: 18px;
    }

    .value-text {
        font-size: 14px;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Features */
    .grid-features {
        grid-template-columns: 1fr;
    }
    .feature-card {
        padding: 25px 20px;
    }
    .feature-title {
        font-size: 24px;
        line-height: 32px;
    }
    .feature-text {
        font-size: 16px;
        line-height: 24px;
    }

    /* Service areas */
    .service-areas-grid {
        grid-template-columns: 1fr;
    }

    /* Services */
    .service-row {
        flex-direction: column;
        padding: 30px 0;
    }
    .service-row:hover {
        padding-left: 15px;
    }
    .service-num {
        font-size: 28px;
    }
    .service-title {
        font-size: 24px;
        line-height: 32px;
    }
    .service-text {
        font-size: 16px;
        line-height: 26px;
    }

    /* Pricing */
    .pricing {
        font-size: 18px;
        line-height: 26px;
    }
    .pricing-item {
        padding: 16px;
    }
    .pricing-title {
        font-size: 18px;
    }
    .pricing-detail strong {
        font-size: 20px;
    }

    /* Contact Section - Mobile */
    .contact-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-info {
        padding: 30px 20px;
    }
    .contact-info-title {
        font-size: 26px;
    }
    .contact-info-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .contact-info-icon {
        font-size: 24px;
    }
    .contact-info-value {
        font-size: 16px;
    }
    .contact-card {
        padding: 25px 20px;
    }
    .contact-title {
        font-size: 28px;
    }
    button#submitBtn {
        font-size: 20px;
        padding: 16px;
    }

    /* FAQ */
    .faq-item summary {
        font-size: 16px;
    }
    .faq-item p {
        font-size: 15px;
    }

    /* Banner */
    .banner-row span {
        font-size: 32px;
        line-height: 40px;
    }
    .banner-row img {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
