/* ============================================
   WATERMAN VOICEWORKS — Global Stylesheet
   ============================================ */

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

:root {
  --primary: #1a1a2e;
  --accent: #e8a838;
  --accent-hover: #d4952e;
  --text: #2d2d2d;
  --text-light: #6b7280;
  --text-white: #f8f9fa;
  --bg: #ffffff;
  --bg-dark: #0c0c18;
  --bg-section: #f7f8fa;
  --border: #e5e7eb;
  --radius: 12px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,15,26,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 72px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: #fff;
  text-decoration: none; letter-spacing: -0.02em; white-space: nowrap;
}
.nav-logo span { color: var(--accent); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.88rem;
  font-weight: 500; transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--accent) !important; color: var(--primary) !important;
  padding: 10px 22px !important; border-radius: 8px; font-weight: 600 !important;
  font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: #fff;
  margin: 5px 0; transition: var(--transition);
}
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg-dark); padding: 32px 24px; z-index: 999;
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 24px; }
.mobile-nav a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 1.15rem; font-weight: 500; }

/* === COMMON SECTIONS === */
section { padding: 100px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); font-weight: 700; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--primary); line-height: 1.2; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--text-light); max-width: 640px; line-height: 1.7;
}
.bg-dark { background: var(--bg-dark); }
.bg-dark .section-title { color: #fff; }
.bg-dark .section-subtitle { color: rgba(255,255,255,0.6); }
.bg-alt { background: var(--bg-section); }
.text-center { text-align: center; }

/* === BUTTONS === */
.btn-primary {
  background: var(--accent); color: var(--primary); padding: 14px 32px;
  border-radius: 10px; text-decoration: none; font-weight: 700;
  font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,168,56,0.3); }
.btn-secondary {
  background: transparent; color: #fff; padding: 14px 32px;
  border-radius: 10px; text-decoration: none; font-weight: 600;
  font-size: 0.95rem; border: 1.5px solid rgba(255,255,255,0.2);
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn-outline {
  background: transparent; color: var(--accent); padding: 12px 28px;
  border-radius: 10px; text-decoration: none; font-weight: 600;
  font-size: 0.9rem; border: 1.5px solid var(--accent);
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--accent); color: var(--primary); }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #16213e 50%, #1a1a2e 100%);
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 24px 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -30%; width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(232,168,56,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.hero-text h1 em { color: var(--accent); font-style: normal; }
.hero-tagline { font-size: 1.15rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; line-height: 1.6; }
.hero-niche {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,168,56,0.12); border: 1px solid rgba(232,168,56,0.25);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 28px;
  font-size: 0.85rem; color: var(--accent); font-weight: 500;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-clients-label { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; font-weight: 600; }
.hero-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-logos span { color: rgba(255,255,255,0.5); font-weight: 700; font-size: 0.95rem; }

/* === HERO AUDIO PLAYER === */
.hero-player {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}

/* Now Playing Card */
.hp-now-playing {
  padding: 28px 24px 24px;
  position: relative;
  overflow: hidden;
}
.hp-now-playing::before {
  content: '';
  position: absolute;
  top: -60%; left: -20%; width: 140%; height: 160%;
  background: radial-gradient(ellipse at center, rgba(232,168,56,0.15) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.6s; pointer-events: none;
}
.hp-now-playing.is-playing::before { opacity: 1; }

.hp-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.hp-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.hp-label .hp-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); display: inline-block;
  opacity: 0; transition: opacity 0.3s;
}
.hp-now-playing.is-playing .hp-pulse {
  opacity: 1; animation: hp-pulse-dot 1.8s ease-in-out infinite;
}
@keyframes hp-pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.hp-autoplay {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  cursor: pointer; user-select: none;
}
.hp-autoplay input[type="checkbox"] { display: none; }
.hp-autoplay-toggle {
  width: 36px; height: 20px; border-radius: 100px;
  background: rgba(255,255,255,0.08); position: relative;
  transition: var(--transition); flex-shrink: 0;
}
.hp-autoplay-toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,0.55); transition: var(--transition);
}
.hp-autoplay input:checked + .hp-autoplay-toggle {
  background: var(--accent);
}
.hp-autoplay input:checked + .hp-autoplay-toggle::after {
  transform: translateX(16px); background: var(--bg-dark);
}

.hp-track-info { margin-bottom: 22px; }
.hp-brand {
  font-size: 0.78rem; color: var(--accent);
  font-weight: 600; letter-spacing: 0.04em; margin-bottom: 4px;
}
.hp-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700; color: #fff;
  margin-bottom: 4px; line-height: 1.25;
}
.hp-tags { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* Waveform */
.hp-waveform {
  position: relative; height: 48px; margin-bottom: 10px;
  cursor: pointer; border-radius: 8px; overflow: hidden;
}
.hp-waveform-bg {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 2px; padding: 0 2px;
}
.hp-waveform-bar {
  flex: 1; background: rgba(255,255,255,0.1);
  border-radius: 2px 2px 0 0; transition: background 0.15s; min-width: 2px;
}
.hp-waveform-bar.played { background: var(--accent); }
.hp-waveform-bar.playing {
  background: #f0b94d;
  animation: hp-bar-pulse 0.6s ease-in-out infinite alternate;
}
@keyframes hp-bar-pulse { from { opacity: 0.8; } to { opacity: 1; } }

.hp-time {
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  font-weight: 500; font-variant-numeric: tabular-nums;
  margin-bottom: 20px;
}

/* Transport Controls */
.hp-controls {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hp-ctrl-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.55); transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  padding: 6px; border-radius: 50%;
}
.hp-ctrl-btn:hover { color: #fff; }
.hp-ctrl-btn svg { width: 20px; height: 20px; }

.hp-ctrl-play {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.hp-ctrl-play:hover {
  background: #f0b94d; transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(232,168,56,0.35);
}
.hp-ctrl-play svg { width: 22px; height: 22px; fill: var(--bg-dark); margin-left: 2px; }
.hp-ctrl-play.is-playing svg { margin-left: 0; }

.hp-volume-group {
  display: flex; align-items: center; gap: 6px; margin-left: auto;
}
.hp-volume-slider {
  -webkit-appearance: none; appearance: none;
  width: 70px; height: 4px; background: rgba(255,255,255,0.08);
  border-radius: 4px; outline: none; cursor: pointer;
}
.hp-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 12px; height: 12px;
  border-radius: 50%; background: var(--accent); cursor: pointer;
  transition: transform 0.15s;
}
.hp-volume-slider::-webkit-slider-thumb:hover { transform: scale(1.3); }

/* Playlist section */
.hp-playlist {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-height: 320px; overflow-y: auto;
}
.hp-playlist::-webkit-scrollbar { width: 4px; }
.hp-playlist::-webkit-scrollbar-track { background: transparent; }
.hp-playlist::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.hp-playlist-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px 10px; position: sticky; top: 0;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(8px);
}
.hp-playlist-title {
  font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.hp-playlist-count {
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06); padding: 2px 10px; border-radius: 100px;
}

.hp-category {
  padding: 12px 24px 6px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.hp-track {
  display: grid; grid-template-columns: 28px 1fr auto auto;
  align-items: center; gap: 12px;
  padding: 10px 24px; cursor: pointer; transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}
.hp-track:hover { background: rgba(255,255,255,0.04); }
.hp-track.active {
  background: rgba(232,168,56,0.06);
  border-left: 3px solid var(--accent);
  padding-left: 21px;
}

.hp-track-num {
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
  font-weight: 500; text-align: center;
}
.hp-track.active .hp-track-num { color: var(--accent); }

.hp-track-num-text {}
.hp-track-play-icon { display: none; width: 16px; height: 16px; }
.hp-track:hover .hp-track-num-text { display: none; }
.hp-track:hover .hp-track-play-icon { display: block; }
.hp-track.active .hp-track-num-text { display: none; }
.hp-track.active .hp-track-play-icon { display: block; }

.hp-eq-bars {
  display: none; align-items: flex-end; justify-content: center;
  gap: 2px; height: 14px;
}
.hp-track.active.playing .hp-eq-bars { display: flex; }
.hp-track.active.playing .hp-track-play-icon { display: none; }
.hp-eq-bar {
  width: 2.5px; border-radius: 1px; background: var(--accent);
  animation: hp-eq-bounce 1.2s ease-in-out infinite alternate;
}
.hp-eq-bar:nth-child(1) { height: 60%; animation-delay: 0s; }
.hp-eq-bar:nth-child(2) { height: 100%; animation-delay: 0.2s; }
.hp-eq-bar:nth-child(3) { height: 40%; animation-delay: 0.4s; }
.hp-eq-bar:nth-child(4) { height: 80%; animation-delay: 0.1s; }
@keyframes hp-eq-bounce { 0% { transform: scaleY(0.4); } 100% { transform: scaleY(1); } }

.hp-track-info-col { min-width: 0; }
.hp-track-name {
  font-size: 0.85rem; font-weight: 600; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hp-track.active .hp-track-name { color: var(--accent); }
.hp-track-tags {
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.hp-track-duration {
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
  font-variant-numeric: tabular-nums; font-weight: 500;
}

.hp-track-dl {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: transparent; border: 1px solid transparent;
  color: rgba(255,255,255,0.3); text-decoration: none;
  transition: var(--transition); flex-shrink: 0;
}
.hp-track-dl:hover {
  background: rgba(232,168,56,0.1);
  border-color: rgba(232,168,56,0.3); color: var(--accent);
}
.hp-track-dl svg { width: 14px; height: 14px; }

/* Player responsive */
@media (max-width: 1024px) {
  .hp-now-playing { padding: 24px 20px 20px; }
  .hp-title { font-size: 1.2rem; }
  .hp-volume-group { display: none; }
}
@media (max-width: 768px) {
  .hp-playlist { max-height: 260px; }
  .hp-track { grid-template-columns: 24px 1fr auto; gap: 10px; padding: 10px 16px; }
  .hp-track.active { padding-left: 13px; }
  .hp-track-duration { display: none; }
  .hp-track-dl { width: 28px; height: 28px; }
  .hp-playlist-header { padding: 14px 16px 8px; }
  .hp-category { padding: 10px 16px 4px; }
  .hp-controls { gap: 12px; }
  .hp-ctrl-play { width: 46px; height: 46px; }
  .hp-ctrl-play svg { width: 18px; height: 18px; }
}

/* === SERVICES GRID === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.service-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; transition: var(--transition);
}
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, rgba(232,168,56,0.1), rgba(232,168,56,0.05)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.5rem; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--primary); font-weight: 700; }
.service-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.65; margin-bottom: 20px; }
.service-link { color: var(--accent); font-weight: 600; font-size: 0.88rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* === DEMO CARDS === */
.demos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.demo-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; align-items: flex-start; gap: 16px; transition: var(--transition);
}
.demo-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.demo-card-info h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 4px; font-weight: 700; }
.demo-card-info .demo-brand { color: var(--accent); font-weight: 600; font-size: 0.82rem; margin-bottom: 6px; }
.demo-card-info p { color: var(--text-light); font-size: 0.84rem; line-height: 1.55; }

/* === WHY GRID === */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 56px; }
.why-card { text-align: center; padding: 32px 20px; }
.why-icon {
  width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 20px;
  background: rgba(232,168,56,0.1); border: 1px solid rgba(232,168,56,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.why-card h4 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; color: #fff; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; }

/* === TESTIMONIALS === */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 16px; left: 24px;
  font-family: 'Playfair Display', serif; font-size: 4rem;
  color: rgba(232,168,56,0.15); line-height: 1;
}
.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.92rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f0c27f);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-weight: 700; font-size: 1rem;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { color: var(--text-light); font-size: 0.8rem; }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; margin-top: 48px; }
.about-image {
  border-radius: 20px; overflow: hidden; position: relative;
  aspect-ratio: 4/5; background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex; align-items: center; justify-content: center;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder { color: rgba(255,255,255,0.3); font-size: 0.9rem; text-align: center; padding: 40px; }
.about-text h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); }
.about-text p { color: var(--text-light); margin-bottom: 16px; font-size: 0.95rem; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border);
}
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }
.studio-details { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.studio-tag { background: var(--bg-section); padding: 8px 16px; border-radius: 8px; font-size: 0.82rem; color: var(--text); font-weight: 500; }

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.blog-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-thumb { height: 200px; background: linear-gradient(135deg, var(--primary), #16213e); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-category { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.blog-card-body h4 { font-size: 1.05rem; color: var(--primary); margin-bottom: 8px; line-height: 1.4; font-weight: 700; }
.blog-card-body h4 a { color: inherit; text-decoration: none; }
.blog-card-body h4 a:hover { color: var(--accent); }
.blog-card-body p { color: var(--text-light); font-size: 0.85rem; line-height: 1.6; }
.blog-date { font-size: 0.78rem; color: var(--text-light); margin-top: 12px; }

/* Blog post page */
.blog-post { max-width: 740px; margin: 0 auto; padding-top: 120px; }
.blog-post h1 { font-family: 'Playfair Display', serif; font-size: 2.4rem; margin-bottom: 16px; line-height: 1.2; }
.blog-post .post-meta { color: var(--text-light); font-size: 0.88rem; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.blog-post .post-body { font-size: 1.05rem; line-height: 1.85; }
.blog-post .post-body h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin: 40px 0 16px; color: var(--primary); }
.blog-post .post-body p { margin-bottom: 20px; }
.blog-post .post-body ul { margin: 16px 0 20px 24px; }
.blog-post .post-body li { margin-bottom: 8px; }
.blog-post .post-cta { background: var(--bg-section); border-radius: var(--radius); padding: 32px; text-align: center; margin-top: 48px; }

/* === CTA SECTION === */
.cta-section { background: linear-gradient(135deg, var(--bg-dark) 0%, #16213e 100%); text-align: center; padding: 100px 24px; }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; margin-top: 48px; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 24px; }
.contact-detail { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(232,168,56,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail-text { font-size: 0.92rem; }
.contact-detail-label { font-size: 0.78rem; color: var(--text-light); }
.contact-social { display: flex; gap: 12px; margin-top: 28px; }
.social-link { width: 44px; height: 44px; border-radius: 10px; background: var(--bg-section); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--text); transition: var(--transition); font-size: 1.1rem; }
.social-link:hover { background: var(--accent); color: var(--primary); }
.contact-form { background: var(--bg-section); border-radius: 20px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: inherit; font-size: 0.92rem;
  transition: var(--transition); background: var(--bg);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,168,56,0.15); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 14px; background: var(--accent); color: var(--primary); border: none; border-radius: 10px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition); font-family: inherit; }
.form-submit:hover { background: var(--accent-hover); }

/* === PAGE HERO (subpages) === */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #16213e 100%);
  padding: 140px 24px 80px; text-align: center;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* === FOOTER === */
footer { background: var(--bg-dark); color: rgba(255,255,255,0.6); padding: 60px 24px 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 0.82rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  section { padding: 72px 20px; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .services-grid, .demos-grid, .testimonial-grid, .blog-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .page-hero { padding: 110px 20px 60px; }
}
