/*
Theme Name: Radium Kurumsal
Theme URI: http://localhost/radiumkurumsal
Author: Radium Radyatör
Description: Radium Radyatör Kurumsal Tek Sayfa Teması
Version: 1.0
License: Private
Text Domain: radium-kurumsal
*/

/* ===========================
   HEADER & TOP BAR
   =========================== */

/* Top Bar */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
    background: linear-gradient(to right, #fb8931, #f25f34, #ca2222);
    z-index: 50;
    display: flex;
    align-items: center;
}

.topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar__link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.topbar__link:hover {
    color: #ffffff;
    text-decoration: none;
}

.topbar__link i {
    font-size: 0.95rem;
}

.topbar__sales {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.92);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 4px 14px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.topbar__sales:hover {
    background: rgba(255,255,255,0.25);
    color: #ffffff;
    text-decoration: none;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 44px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
    z-index: 40;
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-header__logo img {
    height: 48px;
    width: auto;
    display: block;
}

/* Desktop Nav Pill */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav__pill {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(249,250,251,0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 4px;
}

.main-nav__link {
    display: block;
    padding: 8px 24px;
    color: #374151;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.main-nav__link:hover {
    background: #ffffff;
    color: var(--orange);
    text-decoration: none;
}

.main-nav__cta {
    display: block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #fb8931, #f25f34);
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 999px;
    white-space: nowrap;
    margin-left: 2px;
    transition: opacity 0.2s;
}

.main-nav__cta:hover {
    opacity: 0.88;
    text-decoration: none;
    color: #ffffff;
}

/* Hamburger */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-top: 1px solid #eee;
    z-index: 39;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu__inner {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu__link {
    display: block;
    padding: 10px 16px;
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.mobile-menu__link:hover {
    background: #f5f5f5;
    color: var(--orange);
    text-decoration: none;
}

.mobile-menu__cta {
    display: block;
    margin-top: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #fb8931, #f25f34);
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    text-align: center;
    transition: opacity 0.2s;
}

.mobile-menu__cta:hover {
    opacity: 0.88;
    text-decoration: none;
}

/* Responsive: mobilde hamburger göster, nav gizle */
@media (max-width: 900px) {
    .main-nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .topbar__left .topbar__link:first-child {
        display: none; /* email'i küçük ekranda gizle */
    }
    .topbar__sales {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
}

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

:root {
    --orange:   #E85A1E;
    --dark:     #1a1a1a;
    --white:    #ffffff;
    --light-bg: #f7f7f7;
    --text:     #333333;
    --green:    #4A7C59;
    --gray-icon:#f0f0f0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===========================
   VIDEO HERO
   =========================== */
.video-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 108px; /* topbar(44) + header(~64) */
    display: flex;
    align-items: center;
}

.video-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.video-hero__bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    /* 16:9 yatay video — tam ekran kaplama */
    width: 100vw;
    height: calc(100vw * 9 / 16);
    min-height: 100vh;
    min-width: calc(100vh * 16 / 9);
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

/* Gradient overlay */
.video-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
 
}

/* İçerik */
.video-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
}

.video-hero__eyebrow {
    font-style: italic;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    display: block;
}

.video-hero__title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.video-hero__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Stat rozetleri */
.video-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.video-hero__badge {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 10px 18px;
    color: var(--white);
    min-width: 110px;
}

.video-hero__badge strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
}

.video-hero__badge span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.78);
}

/* CTA butonlar */
.video-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.video-hero__btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s;
}

.video-hero__btn--primary {
    background: var(--white);
    color: var(--orange);
}

.video-hero__btn--primary:hover {
    background: rgba(255,255,255,0.9);
    color: var(--orange);
    text-decoration: none;
}

.video-hero__btn--outline {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
}

.video-hero__btn--outline:hover {
    background: rgba(255,255,255,0.22);
    color: var(--white);
    text-decoration: none;
}

/* ===========================
   İSTATİSTİK BAR
   =========================== */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.stats-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid #eee;
    transition: box-shadow 0.2s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    box-shadow: 0 4px 16px rgba(232,90,30,0.08);
}

.stat-item__icon {
    font-size: 1.8rem;
    color: var(--orange);
    display: block;
    margin-bottom: 8px;
}

.stat-item__num {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-item__label {
    font-size: 0.82rem;
    color: #777;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Video hero responsive */
@media (max-width: 768px) {
    .video-hero {
        margin-top: 100px;
    }

    .video-hero__content {
        padding: 50px 24px;
    }

    .video-hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .stats-bar__inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-bottom: none;
    }
}

/* ===========================
   ABOUT / FEATURES
   =========================== */
.about {
    background: var(--white);
    padding: 90px 40px 60px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about__label {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--orange);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    display: block;
}

.about__title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about__text {
    max-width: 820px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gray-icon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature__icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature__desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.divider-bars {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding-bottom: 40px;
}

.divider-bars span {
    display: inline-block;
    width: 6px;
    height: 32px;
    background: var(--orange);
    border-radius: 3px;
}

/* ===========================
   BOYA SÜRECİ
   =========================== */
.process-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}

/* Sol: galeri */
.process-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr auto;
    position: relative;
}

.process-gallery__item {
    overflow: hidden;
    aspect-ratio: 1;
}

.process-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.process-gallery__item:hover img {
    transform: scale(1.05);
}

.process-content__video-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    background: var(--green);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s;
    align-self: flex-start;
}

.process-content__video-btn i {
    font-size: 1.3rem;
}

.process-content__video-btn:hover {
    background: #3a6347;
    color: var(--white);
    text-decoration: none;
}

/* Sağ: içerik */
.process-content {
    padding: 64px 56px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-content__label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 8px;
    display: block;
}

.process-content__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.process-content__intro {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
    border-left: 3px solid var(--orange);
    padding-left: 16px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.process-step__num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.process-step__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.process-step__text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* ===========================
   FACTORY
   =========================== */
.factory {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
}

.factory__content {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.factory__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: 10px;
}

.factory__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.factory__text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.factory__features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
}

.factory__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.factory__feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(232, 90, 30, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.4rem;
}

.factory__feature-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.factory__feature-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.factory__address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #555;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.factory__address i {
    color: var(--orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.factory__image {
    position: relative;
    overflow: hidden;
}

.factory__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.factory__image:hover img {
    transform: scale(1.03);
}

.factory__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

/* ===========================
   PHONE CTA
   =========================== */
.phone-cta {
    background: var(--orange);
    text-align: center;
    padding: 36px 20px;
}

.phone-cta a {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.phone-cta a:hover {
    text-decoration: underline;
}

/* ===========================
   STORES
   =========================== */
.stores {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    padding: 90px 40px;
}

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

.stores__header {
    text-align: center;
    margin-bottom: 56px;
}

.stores__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: 10px;
}

.stores__title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.stores__desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

.stores__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Mağaza kartı */
.store-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.store-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.store-card__img {
    position: relative;
    overflow: hidden;
    height: 420px;
}

.store-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.store-card:hover .store-card__img img {
    transform: scale(1.04);
}

.store-card__badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(232, 90, 30, 0.92);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}

.store-card__body {
    padding: 28px 28px 24px;
}

.store-card__city {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.store-card__addr {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.store-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
    border: 1px solid var(--orange);
    padding: 8px 18px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.store-card__cta:hover {
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 24px 20px;
    font-size: 0.85rem;
}

/* ===========================
   VIDEO MODAL
   =========================== */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.is-open {
    display: flex;
}

.video-modal__inner {
    position: relative;
    width: 90%;
    max-width: 400px;
}

.video-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 10px;
}

.video-modal__close:hover {
    color: var(--orange);
}

.video-modal__frame {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 for Shorts */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-modal__frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* ===========================
   SERTİFİKALAR
   =========================== */
.certificates {
    padding: 100px 40px;
    background: #fff;
}

.certificates__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.certificates__header {
    text-align: center;
    margin-bottom: 60px;
}

.certificates__label {
    display: inline-block;
    background: rgba(232, 90, 30, 0.1);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.certificates__title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #111;
    margin: 0 0 16px;
}

.certificates__desc {
    font-size: 1rem;
    color: #666;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.certificates__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cert-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #eee;
    transition: box-shadow 0.3s, transform 0.3s;
}

.cert-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    transform: translateY(-4px);
}

.cert-card__icon {
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.cert-card__body {
    flex: 1;
}

.cert-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
}

.cert-card__desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cert-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
    align-self: stretch;
    justify-content: center;
}

.cert-card__btn:hover {
    background: #c94e18;
    transform: translateY(-1px);
}

.cert-card__btn i {
    font-size: 1rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 992px) {
    .features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-section {
        grid-template-columns: 1fr;
    }

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

    .factory__image {
        height: 320px;
    }

    .factory__content {
        padding: 50px 40px;
    }

    .stores__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .certificates {
        padding: 70px 24px;
    }
}

@media (max-width: 600px) {
    .about {
        padding: 60px 24px 40px;
    }

    .hero__content {
        padding: 60px 24px;
    }

    .process-content {
        padding: 48px 28px;
    }

    .factory__content {
        padding: 40px 24px;
    }

    .stores {
        padding: 60px 24px;
    }

    .video-modal__inner {
        max-width: 340px;
    }
}
