/*
Theme Name: CWAMC Landing
Theme URI: https://cwamc.co.kr
Author: 주식회사 청원자산관리
Author URI: https://cwamc.co.kr
Description: 주식회사 청원자산관리 공식 랜딩페이지 테마. 부동산 컨설팅·자산관리·NPL 전문 기업 원페이지 워드프레스 테마.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cwamc
*/
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

:root {
  --navy-900: #0a1628;
  --navy-800: #0f2041;
  --navy-700: #162d54;
  --navy-600: #1e3a68;
  --navy-500: #2a4a7f;
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
  --gold: #c9a96e;
  --gold-light: #dfc99e;
  --gold-dark: #a8873f;
  --bg-light: #f7f8fa;
  --bg-card: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a5a;
  --text-light: #7a7a8a;
  --border-light: rgba(0,0,0,0.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-size: 1.15rem; font-weight: 700; color: var(--white);
  text-decoration: none; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: var(--navy-900);
  letter-spacing: 0;
}
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  color: var(--white-70); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  padding: 0.55rem 1.4rem; border-radius: 8px;
  background: var(--gold); color: var(--navy-900);
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: var(--transition);
  border: none; cursor: pointer;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile Menu */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--white);
  position: absolute; left: 5px; transition: 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 21px; }
.nav-toggle.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  z-index: 999;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu a {
  color: var(--white-90); text-decoration: none;
  font-size: 1.15rem; font-weight: 500;
  padding: 1rem 0; border-bottom: 1px solid var(--white-10);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-600) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -30%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -20%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Subtle grid pattern */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--white-05) 1px, transparent 1px),
    linear-gradient(90deg, var(--white-05) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  max-width: 1240px; margin: 0 auto;
  padding: 8rem 2rem 4rem;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  background: var(--white-10);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  color: var(--gold-light);
  font-size: 0.8rem; font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-badge-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-dot::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--navy-900);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--white);
  line-height: 1.25; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero h1 .gold { color: var(--gold); }
.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--white-70); max-width: 580px;
  line-height: 1.8; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s 0.9s forwards;
}
.btn-primary {
  padding: 0.9rem 2.2rem; border-radius: 10px;
  background: var(--gold); color: var(--navy-900);
  font-size: 1rem; font-weight: 650; font-family: inherit;
  border: none; cursor: pointer; text-decoration: none;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}
.btn-secondary {
  padding: 0.9rem 2.2rem; border-radius: 10px;
  background: transparent;
  border: 1px solid var(--white-20);
  color: var(--white); font-size: 1rem; font-weight: 500;
  font-family: inherit; cursor: pointer; text-decoration: none;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover {
  background: var(--white-10);
  border-color: var(--white-50);
}

.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem;
  padding-top: 3rem; border-top: 1px solid var(--white-10);
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s 1.1s forwards;
}
.hero-stat-value {
  font-size: 1.6rem; font-weight: 800; color: var(--gold);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.82rem; color: var(--white-50);
  margin-top: 0.2rem; font-weight: 400;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; z-index: 2;
  opacity: 0; animation: fadeUp 0.8s 1.4s forwards;
}
.scroll-indicator span {
  font-size: 0.7rem; color: var(--white-50);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--white-50), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ─── SECTIONS COMMON ─── */
section {
  padding: 6rem 2rem;
}
.section-container {
  max-width: 1240px; margin: 0 auto;
}
.section-label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800; color: var(--text-dark);
  letter-spacing: -0.03em; line-height: 1.3;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem; color: var(--text-mid);
  max-width: 560px; line-height: 1.8;
}

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ─── ABOUT ─── */
#about {
  background: var(--bg-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  margin-top: 3rem;
}
.about-text p {
  color: var(--text-mid); font-size: 1.05rem;
  line-height: 1.9; margin-bottom: 1.5rem;
}
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.about-value {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about-value:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.about-value-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.8rem;
  color: var(--gold); font-size: 1.1rem;
}
.about-value h4 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.3rem;
}
.about-value p {
  font-size: 0.82rem; color: var(--text-light); line-height: 1.6;
}

/* ─── SERVICES ─── */
#services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-num {
  font-size: 0.72rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.service-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold); font-size: 1.3rem;
}
.service-card h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.88rem; color: var(--text-light);
  line-height: 1.7;
}

/* ─── TRUST / STATS ─── */
#trust {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  position: relative; overflow: hidden;
}
#trust::before {
  content: '';
  position: absolute; top: -40%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative; z-index: 2;
}
.trust-item {
  text-align: center; padding: 2rem 1rem;
}
.trust-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.trust-unit {
  font-size: 0.6em; font-weight: 600;
  color: var(--gold-light); margin-left: 2px;
}
.trust-label {
  font-size: 0.88rem; color: var(--white-50);
  margin-top: 0.6rem; font-weight: 400;
}
.trust-divider {
  width: 24px; height: 2px;
  background: var(--white-10);
  margin: 0.6rem auto 0;
}

/* ─── PROCESS ─── */
#process {
  background: var(--bg-light);
}
.process-steps {
  display: flex; gap: 0; margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: 36px;
  right: 36px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}
.process-step {
  flex: 1; text-align: center;
  position: relative; z-index: 1;
  padding: 0 0.5rem;
}
.process-step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.2rem; font-weight: 800; color: var(--gold-dark);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.process-step:hover .process-step-num {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.08);
}
.process-step h4 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.8rem; color: var(--text-light);
  line-height: 1.6;
}

/* ─── NOTICE ─── */
#notice {
  background: var(--white);
}
.notice-list {
  margin-top: 2.5rem;
}
.notice-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
  gap: 1.5rem;
}
.notice-item:first-child {
  border-top: 2px solid var(--text-dark);
}
.notice-item:hover {
  padding-left: 0.5rem;
}
.notice-badge {
  padding: 0.2rem 0.7rem; border-radius: 4px;
  background: var(--navy-900); color: var(--white);
  font-size: 0.72rem; font-weight: 600;
  white-space: nowrap;
}
.notice-badge.news { background: var(--gold-dark); }
.notice-title {
  flex: 1; font-size: 0.95rem; font-weight: 500;
  color: var(--text-dark);
}
.notice-date {
  font-size: 0.82rem; color: var(--text-light);
  white-space: nowrap;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--bg-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info-card {
  padding: 2.5rem;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  color: var(--white);
  position: relative; overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute; bottom: -30%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-info-card h3 {
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-info-card > p {
  color: var(--white-50); font-size: 0.9rem;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--white-10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold); font-size: 1.1rem;
}
.contact-detail-label {
  font-size: 0.78rem; color: var(--white-50);
  margin-bottom: 0.15rem;
}
.contact-detail-value {
  font-size: 0.92rem; color: var(--white-90);
  font-weight: 500;
}

.contact-form {
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.form-group label .required {
  color: #e74c3c; margin-left: 2px;
}
.form-input {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid #e0e3e8;
  border-radius: 8px; font-size: 0.92rem;
  font-family: inherit; color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
  background: var(--white);
}
.form-input::placeholder {
  color: var(--text-light);
}
textarea.form-input {
  resize: vertical; min-height: 120px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form-check {
  display: flex; align-items: flex-start; gap: 0.5rem;
  margin-bottom: 1.5rem; margin-top: 0.5rem;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 2px;
  accent-color: var(--gold);
}
.form-check label {
  font-size: 0.78rem; color: var(--text-light);
  line-height: 1.5; cursor: pointer;
}
.form-check a {
  color: var(--gold-dark); text-decoration: underline;
}
.btn-submit {
  width: 100%; padding: 0.9rem;
  background: var(--navy-900);
  color: var(--white); font-size: 1rem;
  font-weight: 600; font-family: inherit;
  border: none; border-radius: 10px;
  cursor: pointer; transition: var(--transition);
}
.btn-submit:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(10,22,40,0.2);
}
.btn-submit:disabled {
  opacity: 0.5; cursor: not-allowed;
  transform: none;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-900);
  color: var(--white-70);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
}
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--white-10);
  gap: 2rem; flex-wrap: wrap;
}
.footer-brand {
  max-width: 360px;
}
.footer-brand-name {
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-brand p {
  font-size: 0.82rem; line-height: 1.8;
  color: var(--white-50);
}
.footer-links {
  display: flex; gap: 3rem;
}
.footer-links-group h4 {
  font-size: 0.82rem; font-weight: 600;
  color: var(--white-70); margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.footer-links-group a {
  display: block; color: var(--white-50);
  text-decoration: none; font-size: 0.82rem;
  margin-bottom: 0.4rem;
  transition: var(--transition);
}
.footer-links-group a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 1rem;
}
.footer-info {
  font-size: 0.78rem; color: var(--white-50);
  line-height: 1.9;
}
.footer-info span {
  margin-right: 1.2rem;
}
.footer-legal {
  display: flex; gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.78rem; color: var(--white-50);
  text-decoration: none; transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold); }
.footer-copyright {
  text-align: center;
  font-size: 0.75rem; color: var(--white-20);
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--white-05);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-wrap: wrap; }
  .process-steps::before { display: none; }
  .process-step { flex: 0 0 calc(33.33% - 1rem); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  .nav-links, .nav > .nav-inner > .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .hero-content { padding: 7rem 1.5rem 3rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .process-step { flex: 0 0 50%; }

  .form-row { grid-template-columns: 1fr; }
  .contact-grid { gap: 2rem; }

  .footer-top { flex-direction: column; }
  .footer-links { gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .footer-info span { display: block; margin-right: 0; }
}

@media (max-width: 480px) {
  .about-values { grid-template-columns: 1fr; }
  .process-step { flex: 0 0 100%; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy-900);
  color: var(--white-70);
  padding: 1.2rem 2rem;
  z-index: 9999;
  display: none;
  border-top: 1px solid var(--white-10);
}
.cookie-banner.show { display: flex; }
.cookie-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem; width: 100%; flex-wrap: wrap;
}
.cookie-text {
  font-size: 0.82rem; line-height: 1.6;
  flex: 1;
}
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-buttons {
  display: flex; gap: 0.8rem; flex-shrink: 0;
}
.cookie-btn {
  padding: 0.5rem 1.2rem; border-radius: 6px;
  font-size: 0.82rem; font-weight: 600;
  font-family: inherit; cursor: pointer;
  border: none; transition: var(--transition);
}
.cookie-btn.accept {
  background: var(--gold); color: var(--navy-900);
}
.cookie-btn.accept:hover { background: var(--gold-light); }
.cookie-btn.decline {
  background: var(--white-10); color: var(--white-70);
}
.cookie-btn.decline:hover { background: var(--white-20); }

/* ─── Contact Form 7 overrides ─── */
.contact-form-wrap {
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.contact-form-wrap .wpcf7-form p { margin-bottom: 1.2rem; }
.contact-form-wrap label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.contact-form-wrap .required { color: #e74c3c; margin-left: 2px; }
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid #e0e3e8;
  border-radius: 8px; font-size: 0.92rem;
  font-family: inherit; color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
  background: var(--white);
}
.contact-form-wrap textarea { resize: vertical; min-height: 120px; }
.contact-form-wrap .cf-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.contact-form-wrap .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.contact-form-wrap .wpcf7-acceptance label {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-light);
  font-weight: 400; line-height: 1.5; cursor: pointer;
}
.contact-form-wrap input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 2px;
  accent-color: var(--gold);
}
.contact-form-wrap .wpcf7-submit {
  width: 100%; padding: 0.9rem;
  background: var(--navy-900) !important;
  color: var(--white) !important; font-size: 1rem !important;
  font-weight: 600 !important; font-family: inherit;
  border: none !important; border-radius: 10px !important;
  cursor: pointer; transition: var(--transition);
  margin-top: 0.5rem;
}
.contact-form-wrap .wpcf7-submit:hover {
  background: var(--navy-700) !important;
  transform: translateY(-1px);
}
.contact-form-wrap .wpcf7-response-output {
  border-radius: 8px !important;
  font-size: 0.88rem;
  margin: 1rem 0 0 !important;
}
.contact-form-wrap .wpcf7-spinner { display: none; }
.notice-item { text-decoration: none; color: inherit; }
.notice-empty { padding: 3rem 0; text-align: center; color: var(--text-light); }
@media (max-width: 768px) {
  .contact-form-wrap .cf-row { grid-template-columns: 1fr; }
}
