/* ==========================================================================
   DIGITAL POCHET — MERVE AKOĞUL
   Format & Structure: Beren Öncü Architectural Layout (Adapted for Merve Akoğul)
   High-Converting, Editorial Personal Brand & Agency Aesthetic
   ========================================================================== */

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

:root {
  /* Colors */
  --paper: #dfdac3;
  --paper-soft: #ede8d5;
  --paper-light: #f6f3e7;
  --paper-white: #ffffff;
  
  --ink: #321915;
  --ink-light: #522a25;
  --muted: rgba(82, 42, 37, 0.75);
  
  --dark-bg: #221210;
  --dark-surface: #1a0d0c;
  --dark-card: #2c1714;
  
  --terracotta: #be3519;
  --terracotta-hover: #9c2b14;
  --terracotta-soft: rgba(190, 53, 25, 0.12);
  --gold-accent: #c6a052;
  
  --shadow-sm: 0 4px 14px rgba(50, 25, 21, 0.06);
  --shadow-md: 0 12px 28px rgba(50, 25, 21, 0.1);
  --shadow-lg: 0 24px 50px rgba(34, 18, 16, 0.18);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin-inline: auto;
  position: relative;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.18;
}

.eyebrow {
  display: inline-block;
  background: var(--terracotta);
  color: var(--paper-light) !important;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

/* Buttons */
.button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--paper-light);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-hover);
  border-color: var(--terracotta-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(190, 53, 25, 0.35);
}

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

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--paper-white);
  color: var(--ink);
  border-color: var(--paper-white);
}

.btn-white:hover {
  background: var(--paper-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(223, 218, 195, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(82, 42, 37, 0.1);
  padding: 16px 0;
  transition: var(--transition);
}

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

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}

.brand-copy strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-copy small {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--terracotta);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(82, 42, 37, 0.12);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.main-nav a:hover {
  background: rgba(192, 112, 90, 0.12);
  color: var(--terracotta);
  transform: translateY(-1px);
}

.main-nav a.is-active {
  background: var(--terracotta);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(192, 112, 90, 0.38);
}

.main-nav a.is-active:hover {
  background: var(--terracotta-hover);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.header-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(82, 42, 37, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.1rem;
  transition: var(--transition);
}

.header-socials a:hover {
  background: var(--terracotta);
  color: var(--paper-light);
  border-color: var(--terracotta);
}

.nav-cta {
  background: var(--terracotta);
  color: var(--paper-light) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--terracotta-hover);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION (Beren Öncü Style)
   ========================================================================== */
.hero-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 24px;
}

/* Highlight marker effect */
.hero-copy h1 span {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.hero-copy h1 span::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 14px;
  background: var(--terracotta);
  opacity: 0.85;
  z-index: -1;
  border-radius: 2px;
}

.hero-copy .lead {
  font-size: 1.12rem;
  color: var(--muted);
  margin-bottom: 34px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual-stage {
  position: relative;
  display: flex;
  justify-content: center;
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 540px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--paper-soft);
  background: var(--dark-bg);
}

.home-portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.portrait-frame:hover .home-portrait-image {
  transform: scale(1.03);
}

/* ==========================================================================
   STATS SECTION (Beren Öncü Signature Counter Bar)
   ========================================================================== */
.stats-section {
  background: var(--terracotta);
  color: var(--paper-light);
  padding: 70px 0;
}

.stats-shell {
  display: grid;
  gap: 40px;
}

.stats-head {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}

.stats-head .eyebrow {
  background: var(--paper-light);
  color: var(--terracotta) !important;
}

.stats-head h2 {
  color: var(--paper-light);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.6px;
}

.stats-head p:last-child {
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
}

.stat-card__value {
  display: block;
  font-size: clamp(2.4rem, 4.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--paper-light);
}

.stat-card__label {
  display: block;
  margin-top: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--paper-light);
}

/* ==========================================================================
   ABOUT / MANIFESTO (Beren Öncü Charcoal Dark Section)
   ========================================================================== */
.about-section {
  background: var(--dark-bg);
  padding: 90px 0;
  color: var(--paper);
}

.info-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-section .eyebrow {
  background: var(--terracotta);
  color: var(--paper-light) !important;
}

.about-section .text-block h2 {
  color: var(--paper);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-section .text-block p {
  font-size: 1.05rem;
  color: rgba(223, 218, 195, 0.85);
  margin-bottom: 20px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  padding-bottom: 4px;
  margin-top: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.text-link:hover {
  color: var(--paper-light);
  border-color: var(--paper-light);
  transform: translateX(4px);
}

/* ==========================================================================
   SLANTED MARQUEE DIVIDER (Beren Öncü Signature Element)
   ========================================================================== */
.services-section {
  background: var(--dark-surface);
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  overflow: hidden;
}

.services-divider {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 125%;
  min-width: 1280px;
  background: var(--terracotta);
  overflow: hidden;
  transform: translateX(-50%) rotate(-1.6deg);
  padding: 16px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.services-divider__track {
  display: flex;
  width: max-content;
  animation: services-marquee 24s linear infinite;
}

.services-divider__item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-right: 32px;
  color: var(--paper-light);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.services-divider__item::after {
  content: '✦';
  color: rgba(255, 255, 255, 0.6);
}

@keyframes services-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   SERVICES CARDS (Beren Öncü Hover Line Style)
   ========================================================================== */
.section-head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 760px;
  margin-inline: auto;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.services-section .section-head h2 {
  color: var(--paper);
}

.services-section .section-head p:last-child {
  color: rgba(223, 218, 195, 0.75);
  margin-top: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--paper);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card a {
  font-weight: 800;
  color: var(--ink);
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.service-card a svg {
  color: var(--terracotta);
  transition: transform var(--transition);
}

.service-card:hover a svg {
  transform: translateX(6px);
}

/* ==========================================================================
   REFERENCES / CLIENT PROFILES (Beren Öncü Circle Photo Cards)
   ========================================================================== */
.home-references-section {
  background: var(--dark-bg);
  color: var(--paper);
  padding: 90px 0;
}

.home-references-section .section-head h2 {
  color: var(--paper);
}

.home-references-section .section-head h2 span {
  color: var(--terracotta);
}

.home-references-section .section-head p:last-child {
  color: rgba(223, 218, 195, 0.75);
}

.home-references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 58px 20px;
  margin-top: 74px;
}

.home-reference-card {
  position: relative;
  min-height: 200px;
  padding: 70px 18px 24px;
  border-radius: 28px;
  background: #140a09;
  border: 1px solid rgba(190, 53, 25, 0.25);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  text-align: center;
  transition: var(--transition);
}

.home-reference-card:hover {
  transform: translateY(-8px);
  border-color: var(--terracotta);
}

.home-reference-card__photo {
  position: absolute;
  top: -46px;
  left: 50%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--dark-card);
  border: 6px solid #140a09;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--terracotta);
  font-size: 1.5rem;
  font-weight: 800;
}

.home-reference-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-reference-card h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.12rem;
  font-weight: 700;
}

.home-reference-card__profession {
  margin-top: 8px;
  color: var(--terracotta);
  font-weight: 800;
  font-size: 0.88rem;
}

.home-reference-card__username {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  color: rgba(223, 218, 195, 0.7);
  font-weight: 600;
  font-size: 0.86rem;
  text-decoration: none;
  transition: var(--transition);
}

.home-reference-card__username:hover {
  color: var(--terracotta);
}

/* ==========================================================================
   STATEMENT SECTION (Beren Öncü Marker Highlight Box)
   ========================================================================== */
.statement-section {
  background: var(--terracotta);
  padding: 60px 0;
}

.statement-box {
  color: var(--paper-light);
  padding: 40px 20px;
  text-align: center;
}

.statement-box p {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 700;
  line-height: 1.45;
  max-width: 860px;
  margin: 0 auto;
}

.statement-box span {
  color: var(--ink);
  padding: 0 0.15em;
  background: var(--paper-light);
  border-radius: 4px;
}

/* ==========================================================================
   QUALIFICATION FUNNEL (Integrated seamlessly)
   ========================================================================== */
.funnel-section {
  padding: 90px 0;
  background: var(--paper-soft);
  border-top: 1px solid rgba(82, 42, 37, 0.1);
}

.funnel-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--paper-white);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 50px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(82, 42, 37, 0.1);
}

.funnel-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
}

.funnel-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--paper-soft);
  transform: translateY(-50%);
  z-index: 1;
}

.progress-bar-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  background-color: var(--terracotta);
  transform: translateY(-50%);
  z-index: 2;
  transition: width 0.4s ease;
}

.progress-step {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--paper-white);
  border: 2px solid var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--muted);
  position: relative;
  z-index: 3;
}

.progress-step.active {
  background-color: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--paper-light);
}

.progress-step.completed {
  background-color: var(--ink);
  border-color: var(--ink);
  color: var(--paper-light);
}

.funnel-step-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.funnel-step-content.active {
  display: block;
}

.step-header {
  text-align: center;
  margin-bottom: 30px;
}

.step-header h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.step-header p {
  color: var(--muted);
  font-size: 0.96rem;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.option-card {
  background: var(--paper-light);
  border: 1px solid rgba(82, 42, 37, 0.15);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.option-card:hover {
  border-color: var(--terracotta);
  background: var(--paper-soft);
  transform: translateY(-2px);
}

.option-card.selected {
  background: var(--terracotta-soft);
  border-color: var(--terracotta);
}

.option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option-card.selected .option-radio {
  border-color: var(--terracotta);
  background-color: var(--terracotta);
}

.option-card.selected .option-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--paper-white);
}

.option-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.funnel-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.input-group input,
.input-group textarea {
  background: var(--paper-light);
  border: 1px solid rgba(82, 42, 37, 0.2);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--paper-white);
}

.funnel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(82, 42, 37, 0.1);
}

/* ==========================================================================
   FAQ SECTION (Clean Accordion)
   ========================================================================== */
.faq-section {
  padding: 90px 0;
}

.faq-container {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid rgba(82, 42, 37, 0.2);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--paper-light);
}

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

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-top: 16px;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
}

/* ==========================================================================
   FLOATING WHATSAPP & FOOTER (Beren Öncü Style)
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
}

.site-footer {
  background: var(--dark-bg);
  color: var(--paper);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(223, 218, 195, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand__title {
  color: var(--paper);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(223, 218, 195, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column h4 {
  color: var(--terracotta);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(223, 218, 195, 0.75);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--terracotta);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(223, 218, 195, 0.1);
  font-size: 0.85rem;
  color: rgba(223, 218, 195, 0.6);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid,
  .info-grid,
  .stats-grid,
  .home-references-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy,
  .text-block {
    text-align: center;
  }

  .hero-copy h1,
  .lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .services-divider {
    width: 145%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .main-nav, .header-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .home-references-grid {
    grid-template-columns: 1fr;
  }

  .option-grid,
  .funnel-inputs {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp span.floating-whatsapp__label {
    display: none;
  }

  .floating-whatsapp {
    padding: 14px;
  }
}

/* ===== Shopier Buy Button ===== */
.btn-shopier {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 11px 22px;
  background: var(--terracotta, #c0705a);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(192,112,90,0.35);
}
.btn-shopier:hover {
  background: #a85a44;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,112,90,0.45);
}

/* ===== Editorial Visual Stage & Arch Framing ===== */
.portrait-stage-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115%;
  height: 115%;
  background: radial-gradient(circle at center, rgba(192, 112, 90, 0.28) 0%, rgba(192, 112, 90, 0.08) 50%, transparent 72%);
  filter: blur(32px);
  z-index: 0;
  pointer-events: none;
}

.portrait-aura--warm {
  background: radial-gradient(circle at center, rgba(192, 112, 90, 0.4) 0%, rgba(223, 160, 110, 0.15) 50%, transparent 75%);
  filter: blur(40px);
}

.editorial-arch {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  height: 540px;
  border-radius: 220px 220px 36px 36px;
  overflow: hidden;
  border: 2px solid rgba(192, 112, 90, 0.38);
  box-shadow: 0 25px 60px -15px rgba(25, 20, 18, 0.3), 0 0 40px rgba(192, 112, 90, 0.16);
  background: linear-gradient(180deg, #2c2522 0%, #1a1614 100%);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.editorial-arch:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 112, 90, 0.65);
  box-shadow: 0 32px 70px -15px rgba(25, 20, 18, 0.45), 0 0 50px rgba(192, 112, 90, 0.28);
}

.editorial-arch--about {
  border-radius: 220px 220px 36px 36px;
  border: 2px solid rgba(192, 112, 90, 0.55);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 45px rgba(192, 112, 90, 0.25);
}

.editorial-arch .home-portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: normal !important;
}

.editorial-arch:hover .home-portrait-image {
  transform: scale(1.03);
}

/* ===== Floating Glassmorphism Trust Badges ===== */
.floating-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  background: rgba(24, 20, 18, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(192, 112, 90, 0.42);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(192, 112, 90, 0.15);
  animation: badgeFloat 4s ease-in-out infinite alternate;
  pointer-events: auto;
}

@keyframes badgeFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-7px); }
}

.floating-badge--top {
  top: 36px;
  right: -24px;
}

.floating-badge--bottom {
  bottom: 40px;
  left: -24px;
  animation-delay: 2s;
}

.floating-badge--about {
  bottom: 42px;
  right: -20px;
  animation-delay: 1.5s;
}

.floating-badge .badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--terracotta, #c0705a) 0%, #8f4230 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(192, 112, 90, 0.4);
}

.floating-badge .badge-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.floating-badge .badge-content strong {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.floating-badge .badge-content span {
  color: rgba(235, 230, 220, 0.82);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 2px;
}

/* ===== Service card target line ===== */
.service-card__target {
  font-size: 0.85rem;
  color: var(--muted, #888);
  margin-top: 10px;
  margin-bottom: 4px;
}

@media (max-width: 991px) {
  .editorial-arch {
    height: 480px;
    max-width: 380px;
  }
  .floating-badge--top {
    right: -10px;
  }
  .floating-badge--bottom {
    left: -10px;
  }
  .floating-badge--about {
    right: -10px;
  }
}

@media (max-width: 576px) {
  .editorial-arch {
    height: 400px;
    border-radius: 180px 180px 28px 28px;
  }
  .floating-badge {
    padding: 8px 12px;
    gap: 8px;
  }
  .floating-badge .badge-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  .floating-badge .badge-content strong {
    font-size: 0.82rem;
  }
  .floating-badge .badge-content span {
    font-size: 0.68rem;
  }
  .floating-badge--top {
    top: 15px;
    right: 0px;
  }
  .floating-badge--bottom {
    bottom: 15px;
    left: 0px;
  }
  .floating-badge--about {
    bottom: 15px;
    right: 0px;
  }
}

/* ===== Google Calendar Scheduling Button Polish ===== */
.gcal-scheduling-target button,
div[data-calendar-scheduling-button] {
  font-family: inherit !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  padding: 12px 28px !important;
  font-size: 0.95rem !important;
  box-shadow: 0 4px 16px rgba(192, 112, 90, 0.35) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.gcal-scheduling-target button:hover,
div[data-calendar-scheduling-button]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 22px rgba(192, 112, 90, 0.45) !important;
}

/* ===== Lead Pop-Up Modal (Ön Görüşme) ===== */
.lead-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 14, 12, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

.lead-modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.lead-modal-card {
  position: relative;
  background: linear-gradient(145deg, #251e1b 0%, #171311 100%);
  border: 1.5px solid rgba(192, 112, 90, 0.45);
  border-radius: 28px;
  padding: 40px 34px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), 0 0 50px rgba(192, 112, 90, 0.22);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: #fff;
}

.lead-modal-overlay.is-visible .lead-modal-card {
  transform: translateY(0) scale(1);
}

.lead-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lead-modal-close:hover {
  background: var(--terracotta, #c0705a);
  border-color: var(--terracotta, #c0705a);
  transform: rotate(90deg);
}

.lead-modal-badge {
  display: inline-block;
  margin-bottom: 14px;
}

.lead-modal-badge span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192, 112, 90, 0.2);
  border: 1px solid rgba(192, 112, 90, 0.45);
  color: var(--terracotta, #c0705a);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.lead-modal-title {
  font-size: clamp(1.6rem, 4vw, 1.95rem);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.lead-modal-desc {
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(235, 230, 220, 0.85);
  margin-bottom: 22px;
}

.lead-modal-features {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.lead-modal-features .feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: rgba(245, 240, 235, 0.95);
  font-weight: 600;
}

.lead-modal-features .feature-pill i {
  color: var(--terracotta, #c0705a);
  font-size: 0.75rem;
}

.lead-modal-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.btn-lead-cta {
  width: 100%;
  padding: 15px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--terracotta, #c0705a);
  color: #fff;
  box-shadow: 0 8px 24px rgba(192, 112, 90, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-lead-cta:hover {
  background: var(--terracotta-hover, #a85a44);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(192, 112, 90, 0.55);
}

.lead-modal-subtext {
  font-size: 0.8rem;
  color: rgba(235, 230, 220, 0.65);
  font-style: italic;
}

@keyframes funnelGlowPulse {
  0% { box-shadow: 0 0 0 0 rgba(192, 112, 90, 0.7); }
  50% { box-shadow: 0 0 0 20px rgba(192, 112, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(192, 112, 90, 0); }
}

.funnel-highlight {
  animation: funnelGlowPulse 1.4s ease-in-out 3;
}


