@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --green: #0d2f2d;
  --green-mid: #174a47;
  --green-light: #1e5c58;
  --gold: #c9a54a;
  --gold-light: #e2c46e;
  --gold-pale: #f5ead3;
  --white: #fafaf8;
  --off-white: #f4f3ef;
  --text: #1a1a18;
  --text-mid: #4a4a46;
  --text-light: #8a8a84;
  --border: #e8e6e0;
  --radius: 2px;
  --shadow: 0 4px 24px rgba(13,47,45,0.08);
  --shadow-lg: 0 20px 60px rgba(13,47,45,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* TOP BAR */
.hw-top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: rgba(250,250,248,0.97); color: var(--text);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 8px 60px; font-size: 12px;
  display: flex; justify-content: flex-end; align-items: center; gap: 18px;
}
.hw-top-bar a {
  color: var(--text-mid); transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.hw-top-bar a:hover { color: var(--gold); }
.hw-top-bar a.tb-cta {
  background: var(--green); color: white; padding: 4px 12px; border-radius: var(--radius);
  font-weight: 600; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
}
.hw-top-bar a.tb-cta:hover { background: var(--green-light); color: white; }
.hw-top-bar .tb-divider { width: 1px; height: 14px; background: rgba(0,0,0,0.12); }

/* NAV */
.hw-nav {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 96px;
  background: rgb(13, 47, 45);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: height 0.3s;
}
.hw-nav-logo { display: flex; align-items: center; }
.hw-nav-logo img { height: 70px; width: auto; }
.hw-nav-links { display: flex; gap: 32px; list-style: none; }
.hw-nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: white; opacity: 0.8;
  transition: opacity 0.2s;
}
.hw-nav-links a:hover { opacity: 1; }
.hw-nav-right { display: flex; align-items: center; gap: 16px; }
.hw-nav-icon {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; color: white; opacity: 0.8;
  transition: opacity 0.2s; background: none; border: none;
}
.hw-nav-icon:hover { opacity: 1; }
.hw-cart-badge {
  position: absolute; top: 2px; right: 2px; width: 16px; height: 16px;
  background: var(--gold); border-radius: 50%; font-size: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-weight: 700;
}
.hw-nav-cta {
  background: var(--gold); color: var(--green); border: none;
  padding: 10px 22px; font-size: 12px; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background 0.25s; border-radius: var(--radius);
}
.hw-nav-cta:hover { background: var(--gold-light); }

/* FOOTER */
.hw-footer { background: #141412; color: rgba(255,255,255,0.45); padding: 64px 60px 36px; }
.hw-footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.hw-footer-brand img { height: 34px; filter: brightness(0) invert(1); opacity: 0.8; margin-bottom: 14px; }
.hw-footer-brand p { font-size: 13px; line-height: 1.7; font-weight: 300; }
.hw-footer-col h5 { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: white; margin-bottom: 18px; font-weight: 600; font-family: 'DM Sans', sans-serif; }
.hw-footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 9px; transition: color 0.2s; }
.hw-footer-col a:hover { color: var(--gold); }
.hw-footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; justify-content: space-between; font-size: 11px; }

/* PAGE WRAPPER */
.hw-page { padding-top: 130px; min-height: 100vh; }

/* PAGE HERO */
.page-hero {
  background: var(--off-white);
  padding: 72px 60px 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-label::before { content:''; display:block; width:24px; height:1px; background:var(--gold); }
.page-hero h1 { font-size: clamp(36px,4vw,56px); font-weight: 400; color: var(--green); line-height: 1.1; }
.page-hero p { font-size: 16px; color: var(--text-mid); margin-top: 14px; font-weight: 300; max-width: 560px; line-height: 1.7; }

/* BREADCRUMB */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--text-light); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }

/* BUTTONS */
.btn-primary {
  background: var(--green); color: white; border: none;
  padding: 14px 32px; font-size: 13px; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.25s; border-radius: var(--radius); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold); color: var(--green); border: none;
  padding: 14px 32px; font-size: 13px; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.25s; border-radius: var(--radius); display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost {
  background: transparent; color: var(--text); border: 1px solid var(--border);
  padding: 13px 28px; font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.25s;
  border-radius: var(--radius); display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-outline-gold {
  background: transparent; color: var(--gold); border: 1px solid var(--gold);
  padding: 13px 28px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.25s; border-radius: var(--radius);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--green); }

/* SECTION HEADER */
.section-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content:''; display:block; width:20px; height:1px; background:var(--gold); }
.section-title { font-size: clamp(28px,3vw,44px); font-weight: 400; color: var(--green); line-height: 1.12; margin-bottom: 12px; text-wrap: pretty; }
.section-sub { font-size: 15px; color: var(--text-mid); font-weight: 300; line-height: 1.7; max-width: 520px; }

/* FORM ELEMENTS */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; font-weight: 600; color: var(--text-mid); }
.form-group input, .form-group textarea, .form-group select {
  border: 1px solid var(--border); background: var(--off-white);
  padding: 13px 15px; font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--text); outline: none; transition: border-color 0.2s;
  border-radius: var(--radius);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green); background: white; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }

/* CARD */
.hw-card {
  background: white; border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s; overflow: hidden;
}
.hw-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

/* BADGE */
.hw-badge {
  display: inline-flex; align-items: center; padding: 4px 12px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 20px;
}
.hw-badge-gold { background: var(--gold-pale); color: var(--gold); border: 1px solid rgba(201,165,74,0.3); }
.hw-badge-green { background: rgba(13,47,45,0.08); color: var(--green); }
.hw-badge-success { background: #e8f5e9; color: #2e7d32; }
.hw-badge-error { background: #fce4e4; color: #c62828; }

/* STARS */
.stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }

/* DIVIDER */
.hw-divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* SCROLL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
body.ready .reveal { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hw-nav { padding: 0 20px; }
  .hw-nav-links { display: none; }
  .page-hero { padding: 48px 20px 40px; }
  .hw-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .hw-footer-inner { grid-template-columns: 1fr; }
}

/* NAV — hamburger */
.hw-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hw-hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; }
.hw-nav-outline-btn {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 14px; border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius);
  color: white; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.hw-nav-outline-btn:hover { border-color: var(--gold); color: var(--gold); }

/* MOBILE MENU */
.hw-mobile-menu {
  display: none; position: fixed; top: 130px; left: 0; right: 0; bottom: 0;
  background: rgba(250,250,248,0.98); backdrop-filter: blur(12px);
  flex-direction: column; padding: 24px 20px; gap: 0; z-index: 999;
  transform: translateX(100%); transition: transform 0.3s;
}
.hw-mobile-menu.open { transform: translateX(0); display: flex; }
.hw-mobile-menu a {
  display: block; padding: 16px 0; font-size: 15px; font-weight: 500;
  color: var(--text); border-bottom: 1px solid var(--border); text-decoration: none;
}
.hw-mobile-menu a:hover { color: var(--green); }

/* KPI SECTION */
.kpi-section { background: var(--white); padding: 80px 60px; }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; }
.kpi-box {
  padding: 40px 32px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.kpi-box:last-child { border-right: none; }
.kpi-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); font-weight: 600; }
.kpi-value { font-family: 'Playfair Display', serif; font-size: clamp(36px,4vw,52px); color: var(--green); font-weight: 400; line-height: 1; }
.kpi-desc { font-size: 13px; color: var(--text-mid); font-weight: 300; line-height: 1.5; }

/* BLOG SECTION */
.blog-section { background: var(--off-white); padding: 80px 60px; }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
.blog-card { background: white; overflow: hidden; cursor: pointer; transition: box-shadow 0.3s; border: 1px solid var(--border); }
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-card:hover .bc-img { transform: scale(1.04); }
.bc-img-wrap { height: 200px; background: var(--off-white); overflow: hidden; }
.bc-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.bc-body { padding: 24px 20px; }
.bc-tag { display: inline-block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-bottom: 10px; }
.bc-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--green); margin-bottom: 8px; line-height: 1.3; }
.bc-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.6; font-weight: 300; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bc-link { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase; }
.bc-link::after { content: ' →'; }

/* INFO CARD (bilgi kartı, cyan gradient) */
.info-card { background: linear-gradient(135deg, var(--green-mid) 0%, var(--green) 100%); padding: 40px 32px; display: flex; flex-direction: column; justify-content: center; cursor: pointer; transition: opacity 0.3s; }
.info-card:hover { opacity: 0.9; }
.info-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: white; margin-bottom: 10px; line-height: 1.2; }
.info-card p { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 16px; }
.info-card .bc-link { color: var(--gold-light); }

/* PRE-FOOTER CONTACT */
.prefooter-section { background: var(--off-white); padding: 80px 60px; }
.prefooter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.prefooter-form { display: flex; flex-direction: column; gap: 14px; }
.prefooter-tags { display: flex; flex-direction: column; gap: 16px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tag-item { padding: 6px 14px; border: 1px solid var(--border); background: white; font-size: 12px; color: var(--text-mid); border-radius: 20px; cursor: pointer; transition: all 0.2s; }
.tag-item:hover { border-color: var(--green); color: var(--green); }

/* PRODUCT GRID (anasayfa 2x2) */
.products-2x2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 64px; }

/* PRODUCT CARD EXTENDED (with price) */
.pc-price-tag { display: flex; align-items: baseline; gap: 8px; margin: 12px 0; }
.pc-price-tag .pc-price { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--green); }
.pc-price-tag .pc-old-price { font-size: 16px; color: var(--text-light); text-decoration: line-through; }
.pc-price-tag .pc-save-badge { background: var(--gold-pale); color: var(--gold); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px; }

/* PRODUCT DETAIL TABS */
.pd-tabs-bar { display: flex; gap: 0; border-bottom: 1px solid var(--border); padding: 0 60px; overflow-x: auto; }
.pd-tab-btn { padding: 14px 24px; background: none; border: none; border-bottom: 2px solid transparent; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; color: var(--text-mid); transition: all 0.2s; white-space: nowrap; margin-bottom: -1px; flex-shrink: 0; }
.pd-tab-btn.active { color: var(--green); border-bottom-color: var(--gold); }
.pd-tab-content { padding: 48px 60px; }

/* USAGE AREAS */
.usage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 32px; }
.usage-card { background: var(--off-white); padding: 28px; text-align: center; }
.usage-card img { width: 100%; height: 160px; object-fit: cover; margin-bottom: 16px; filter: drop-shadow(0 8px 24px rgba(13,47,45,0.1)); }
.usage-card h4 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--green); margin-bottom: 6px; }
.usage-card p { font-size: 13px; color: var(--text-mid); font-weight: 300; }

/* SPEC TABLE */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 12px 0; font-size: 14px; }
.spec-table td:first-child { color: var(--text-light); width: 40%; font-weight: 300; }
.spec-table td:last-child { color: var(--text); font-weight: 500; }

/* INSTALL INFO */
.install-box { background: var(--off-white); padding: 32px; border-left: 3px solid var(--gold); margin-top: 24px; }
.install-box h4 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--green); margin-bottom: 12px; }
.install-box p { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

/* CERTIFICATIONS */
.cert-grid { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.cert-badge { width: 80px; height: 80px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--text-mid); text-align: center; letter-spacing: 0.05em; background: white; transition: box-shadow 0.2s; }
.cert-badge:hover { box-shadow: var(--shadow); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.gallery-item { background: var(--off-white); height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* TAGS CLOUD */
.tag-cloud-large .tag-item { padding: 8px 18px; font-size: 13px; }

/* ABOUT PAGE — factory video */
.factory-video-section { width: 100%; height: 480px; background: var(--text); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.factory-video-placeholder { color: rgba(255,255,255,0.3); font-family: monospace; font-size: 13px; text-align: center; }
.factory-video-placeholder span { display: block; font-size: 11px; margin-top: 8px; }

/* ABOUT — vizyon/misyon */
.vmm-section { background: var(--off-white); padding: 80px 60px; }
.vmm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.vmm-card { background: white; padding: 40px 32px; border-top: 3px solid var(--gold); }
.vmm-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--green); margin-bottom: 16px; }
.vmm-card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; font-weight: 300; }

/* CONTACT PAGE — map */
.contact-map { width: 100%; height: 280px; background: var(--off-white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-top: 32px; }
.contact-map iframe { width: 100%; height: 100%; border: none; }
.map-placeholder-map { text-align: center; color: var(--text-light); font-family: monospace; font-size: 12px; }

/* CONTACT — working hours */
.working-hours { margin-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.wh-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; }
.wh-day { color: rgba(255,255,255,0.5); }
.wh-time { color: white; font-weight: 500; }

/* NEWSLETTER FOOTER */
.hw-footer-newsletter { border-top: 1px solid rgba(255,255,255,0.08); padding: 32px 0; margin-top: 32px; }
.hw-footer-nl-inner { max-width: 480px; }
.hw-footer-newsletter h5 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: white; font-weight: 600; font-family: 'DM Sans', sans-serif; margin-bottom: 8px; }
.hw-footer-newsletter p { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300; margin-bottom: 16px; }
.hw-nl-form { display: flex; gap: 8px; }
.hw-nl-form input { flex: 1; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); padding: 11px 14px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: white; border-radius: var(--radius); outline: none; }
.hw-nl-form input::placeholder { color: rgba(255,255,255,0.3); }
.hw-nl-form input:focus { border-color: var(--gold); }

/* FOOTER LEGAL */
.hw-footer-legal { display: flex; gap: 16px; }
.hw-footer-legal a { font-size: 11px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.hw-footer-legal a:hover { color: var(--gold); }

/* BLOG DETAIL */
.blog-detail-hero { background: var(--green); padding: 120px 60px 80px; }
.blog-detail-hero .bd-tag { display: inline-block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.blog-detail-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px,4vw,52px); color: white; font-weight: 400; line-height: 1.15; margin-bottom: 20px; }
.blog-detail-hero .bd-meta { font-size: 13px; color: rgba(255,255,255,0.5); }
.blog-content { max-width: 720px; margin: 0 auto; padding: 64px 24px; }
.blog-content p { font-size: 16px; line-height: 1.85; color: var(--text-mid); font-weight: 300; margin-bottom: 24px; }
.blog-content h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--green); margin: 40px 0 16px; }
.blog-content h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--green); margin: 32px 0 12px; }
.blog-content ul { margin: 16px 0 24px 20px; }
.blog-content li { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 8px; }
.blog-related { background: var(--off-white); padding: 64px 60px; }
.blog-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 32px; }

/* KWIKWIDGET */
.kvkk-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 8px; }
.kvkk-row input[type=checkbox] { margin-top: 2px; accent-color: var(--green); }
.kvkk-row label { font-size: 12px; color: var(--text-light); line-height: 1.5; }
.kvkk-row a { color: var(--gold); }

/* BAYI GIRISI */
.bayi-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.bayi-visual { background: var(--green); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 60px; }
.bayi-visual-content { position: relative; z-index: 1; text-align: center; }
.bayi-visual-content h2 { font-family: 'Playfair Display', serif; font-size: 40px; color: white; font-weight: 400; margin-bottom: 16px; line-height: 1.15; }
.bayi-visual-content p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; font-weight: 300; }
.bayi-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.bayi-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); animation: pulse-ring 4s ease-in-out infinite; }
.bayi-ring:nth-child(1) { width: 280px; height: 280px; animation-delay: 0s; }
.bayi-ring:nth-child(2) { width: 420px; height: 420px; animation-delay: 0.8s; }
.bayi-ring:nth-child(3) { width: 540px; height: 540px; animation-delay: 1.6s; }
.bayi-form-side { display: flex; align-items: center; justify-content: center; padding: 60px 80px; background: var(--white); }
.bayi-form-box { width: 100%; max-width: 400px; }
.bayi-logo { margin-bottom: 40px; display: flex; align-items: center; gap: 12px; }
.bayi-logo img { height: 36px; }
.bayi-logo span { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--green); font-weight: 400; }
.bayi-form { display: flex; flex-direction: column; gap: 16px; }
.bayi-eye-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--text-light); font-size: 16px; }
.bayi-input-wrap { position: relative; }
.bayi-divider { display: flex; align-items: center; gap: 12px; margin: 8px 0; }
.bayi-divider::before, .bayi-divider::after { content:''; flex: 1; height: 1px; background: var(--border); }
.bayi-divider span { font-size: 12px; color: var(--text-light); }
.bayi-remember { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid); }
.bayi-remember input { accent-color: var(--green); }
.bayi-link { font-size: 12px; color: var(--gold); transition: color 0.2s; }
.bayi-link:hover { color: var(--gold-light); }
.bayi-error { font-size: 12px; color: #c62828; background: #fce4e4; padding: 10px 14px; border-radius: 2px; }

/* TAKSIT TABLE */
.taksit-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.taksit-table th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); font-weight: 600; padding: 8px; border-bottom: 1px solid var(--border); text-align: center; }
.taksit-table td { font-size: 14px; color: var(--text); padding: 8px; text-align: center; border-bottom: 1px solid var(--border); }
.taksit-table td:first-child { color: var(--text-light); font-size: 12px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-box:nth-child(2) { border-right: none; }
  .kpi-box:nth-child(3) { border-right: 1px solid var(--border); }
  .kpi-box:nth-child(4) { border-right: none; }
}

@media (max-width: 900px) {
  .hw-top-bar { display: none; }
  .hw-nav { padding: 0 20px; top: 0; }
  .hw-page { padding-top: 96px; }
  .hw-mobile-menu { top: 96px; }
  .hw-nav-links { display: none; }
  .hw-nav-outline-btn { display: none; }
  .hw-hamburger { display: flex; }
  .page-hero { padding: 48px 20px 40px; }
  .kpi-section { padding: 60px 20px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .kpi-box:nth-child(2) { border-right: none; }
  .kpi-box:nth-child(3) { border-right: 1px solid var(--border); }
  .kpi-box:nth-child(4) { border-right: none; }
  .blog-section { padding: 60px 20px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .products-2x2-grid { grid-template-columns: 1fr; }
  .vmm-grid { grid-template-columns: 1fr; }
  .prefooter-inner { grid-template-columns: 1fr; }
  .usage-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-tabs-bar { padding: 0 20px; }
  .pd-tab-content { padding: 32px 20px; }
  .bayi-page { grid-template-columns: 1fr; }
  .bayi-visual { display: none; }
  .bayi-form-side { padding: 40px 24px; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .blog-related { padding: 48px 20px; }
  .vmm-section { padding: 60px 20px; }
  .prefooter-section { padding: 60px 20px; }
  .hw-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hw-footer-newsletter { padding: 24px 0; }
  .hw-nl-form { flex-direction: column; }
}

@media (max-width: 600px) {
  .hw-footer-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
  .kpi-box { border-right: none; border-bottom: 1px solid var(--border); }
  .usage-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hw-footer-legal { flex-wrap: wrap; gap: 12px; }
}
