/* =============================================
   Pharmacy.bg – Premium Domain Landing Page
   styles.css
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #f8fafb;
  color: #1a2e44;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

/* ---- CSS Variables ---- */
:root {
  --green: #0f9e6e;
  --green-dark: #0b7a55;
  --green-light: #dcfce7;
  --green-pale: #f0fdf4;
  --navy: #1a2e44;
  --navy-light: #2d4a6a;
  --accent: #f59e0b;
  --blue: #3b82f6;
  --gray-50: #f8fafb;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --error: #ef4444;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.15);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Container ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(15,158,110,0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}

.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 14px; }
.btn-full { width: 100%; }

.btn:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo-link { display: flex; align-items: center; }
.logo-svg { height: 38px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--green); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  background: white;
  border-top: 1px solid var(--gray-200);
}
.mobile-nav a {
  padding: 10px 0;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav.open { display: flex; }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 90px 0 100px;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf9 40%, #e8f5fe 100%);
  overflow: hidden;
  text-align: center;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.shape-1 { width: 500px; height: 500px; background: #a7f3d0; top: -150px; right: -100px; }
.shape-2 { width: 350px; height: 350px; background: #bfdbfe; bottom: -100px; left: -80px; }
.shape-3 { width: 250px; height: 250px; background: #fde68a; top: 40%; left: 50%; transform: translateX(-50%); }

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dcfce7, #d1fae5);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid #a7f3d0;
  margin-bottom: 28px;
}

.hero-logo-large {
  margin: 0 auto 28px;
  max-width: 340px;
  filter: drop-shadow(0 8px 32px rgba(15,158,110,0.18));
  animation: fadeInDown 0.7s ease both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
  animation: fadeIn 0.8s 0.2s ease both;
}

.hero-title .highlight { color: var(--green); }

.hero-subtitle {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  color: var(--gray-600);
  animation: fadeIn 0.8s 0.3s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 14px 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 24px rgba(15,158,110,0.15);
  animation: fadeIn 0.8s 0.4s ease both;
}
.price-label { font-size: 0.8rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; }
.price-value { font-size: 2rem; font-weight: 800; color: var(--green); line-height: 1.2; }

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeIn 0.8s 0.5s ease both;
}

.hero-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
  animation: fadeIn 0.8s 0.6s ease both;
}
.hero-trust span::before { color: var(--green); }

/* ---- Section Shared ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 8px;
  text-align: center;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
}
.subsection-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}

/* ---- Stats Strip ---- */
.stats-strip {
  padding: 72px 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.stat-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.stat-icon { font-size: 1.8rem; margin-bottom: 10px; }
.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ---- Search Trends ---- */
.search-trends {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.search-trends h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.trends-grid { display: flex; flex-direction: column; gap: 16px; }
.trend-item {
  display: grid;
  grid-template-columns: 200px 1fr 110px;
  align-items: center;
  gap: 16px;
}
.trend-keyword {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-light);
}
.trend-bar-wrap {
  background: var(--gray-200);
  border-radius: 100px;
  height: 10px;
  overflow: hidden;
}
.trend-bar {
  height: 100%;
  width: var(--bar-width);
  background: linear-gradient(90deg, var(--green), #34d399);
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.trend-vol {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  text-align: right;
}
.trends-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 20px;
  text-align: center;
}

/* ---- Advantages ---- */
.advantages {
  padding: 90px 0;
  background: var(--gray-50);
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.adv-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
}
.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.adv-card--featured {
  border: 2px solid var(--green);
  background: linear-gradient(160deg, #f0fdf9 0%, white 60%);
  box-shadow: 0 8px 32px rgba(15,158,110,0.12);
}

.adv-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 100px;
}

.adv-icon { width: 52px; height: 52px; margin-bottom: 18px; }
.adv-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.adv-card p {
  font-size: 0.93rem;
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.7;
}
.adv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.adv-list li {
  font-size: 0.88rem;
  color: var(--gray-700);
  padding-left: 20px;
  position: relative;
}
.adv-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ---- Premium Advantages ---- */
.premium-advantages {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.prem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.prem-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-light);
  transition: all var(--transition);
}
.prem-item:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}
.prem-icon { font-size: 1.3rem; }

/* ---- Business Ideas ---- */
.ideas {
  padding: 90px 0;
  background: white;
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.idea-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.idea-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
  background: white;
}
.idea-card:hover .idea-number { opacity: 0.15; }

.idea-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  opacity: 0.08;
  transition: opacity var(--transition);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.idea-icon { font-size: 2rem; margin-bottom: 12px; }
.idea-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.idea-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 14px;
}
.idea-revenue {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ---- Process ---- */
.process {
  padding: 90px 0;
  background: linear-gradient(160deg, #f0fdf9 0%, #f8fafb 100%);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 150px;
  padding: 0 8px;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--green);
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(15,158,110,0.3);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.process-connector {
  flex: 0 0 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), #34d399);
  margin-top: 26px;
  border-radius: 2px;
}

.process-guarantee {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-light);
}
.guarantee-item span:first-child { font-size: 1.3rem; }

/* ---- Contact ---- */
.contact {
  padding: 90px 0;
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Form */
.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-message {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-success {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #a7f3d0;
}
.form-error-msg {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.required { color: var(--error); margin-left: 2px; }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: inherit;
  background: white;
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15,158,110,0.12);
}
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.form-group input.valid {
  border-color: var(--green);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.offer-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.offer-input-wrap:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15,158,110,0.12);
}
.offer-input-wrap.invalid { border-color: var(--error); }
.offer-prefix {
  padding: 12px 14px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-weight: 700;
  font-size: 1.05rem;
  border-right: 1.5px solid var(--gray-300);
}
.offer-input-wrap input {
  border: none;
  border-radius: 0;
  flex: 1;
  box-shadow: none !important;
}
.offer-input-wrap input:focus { box-shadow: none !important; }

.field-hint {
  font-size: 0.78rem;
  color: var(--gray-400);
}
.field-error {
  font-size: 0.8rem;
  color: var(--error);
  font-weight: 500;
  min-height: 1.1em;
}

/* Captcha */
.captcha-group label { font-size: 0.88rem; }
#captcha-question { font-weight: 700; color: var(--green); }

/* Checkbox */
.checkbox-group { margin-bottom: 24px; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--navy);
  user-select: none;
}
.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  background: white;
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition);
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--green);
  border-color: var(--green);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.checkbox-label input:focus-visible + .checkbox-custom {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}
.checkbox-label.invalid .checkbox-custom { border-color: var(--error); }

#submitBtn {
  position: relative;
  margin-bottom: 12px;
}
#submitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}
.btn-loading { display: none; }
#submitBtn.loading .btn-text { display: none; }
#submitBtn.loading .btn-loading { display: inline; }

.submit-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* Contact Info Sidebar */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.info-item span:first-child { font-size: 1.3rem; margin-top: 2px; }
.info-item div { display: flex; flex-direction: column; }
.info-item strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.info-item span, .info-item a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}
.info-item a { color: var(--green); }
.info-item a:hover { text-decoration: underline; }

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sec-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.sec-badge-icon { font-size: 1.2rem; }

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 48px 0 32px;
}
.footer-inner { display: flex; flex-direction: column; gap: 28px; }
.footer-logo p {
  margin-top: 10px;
  font-size: 0.85rem;
  opacity: 0.6;
}
.footer-logo svg { height: 40px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links a {
  font-size: 0.88rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.footer-links a:hover { opacity: 1; color: #34d399; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.8rem;
  opacity: 0.55;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ---- Scroll animations ---- */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info { flex-direction: row; flex-wrap: wrap; }
  .info-card { flex: 1; min-width: 260px; }
  .security-badges { flex-direction: row; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 30px; flex: 0 0 30px; margin: 0; }
  .trend-item { grid-template-columns: 160px 1fr 90px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 60px 0 70px; }
  .form-row { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .ideas-grid { grid-template-columns: 1fr; }
  .trend-item { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trend-vol { text-align: left; }
  .trend-bar-wrap { display: none; }
  .search-trends { padding: 24px 20px; }
  .contact-form { padding: 24px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-guarantee { gap: 12px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 320px; }
  .prem-grid { grid-template-columns: 1fr 1fr; }
  .security-badges { flex-direction: column; }
  .contact-info { flex-direction: column; }
}

/* ---- Accessibility ---- */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
