/* ===== GOOGLE ADS SERVICE PAGE — google-ads.css ===== */

/* ── Global italic accent (Playfair Display) ── */
.italic-accent {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: #e91e8c;
}

/* ══════════════════════════════════════════
   HERO — 2-column grid layout
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
  background: #080808;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 350px; height: 350px;
  background: #e91e8c;
  top: 15%; left: -80px;
}
.hero::after {
  width: 400px; height: 400px;
  background: #7c3aed;
  bottom: 5%; left: 10%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(17, 17, 17, 0.75);
  border: 1px solid rgba(233, 30, 140, 0.35);
  border-radius: 50px;
  font-size: 11px;
  color: #e91e8c;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-text h1 {
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-weight: 900;
}

.hero-text h1 .italic-accent {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: #e91e8c;
  font-weight: 500;
}

.hero-sub {
  max-width: 440px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 28px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-canvas-wrap {
  position: relative;
  height: 580px;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

#gads-hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .hero { padding: 100px 32px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-canvas-wrap { height: 400px; order: 2; }
  .hero-text { max-width: 100%; order: 1; }
}

@media (max-width: 600px) {
  .hero { padding: 90px 20px 60px; }
  .hero-canvas-wrap { height: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-canvas-wrap canvas { opacity: 0.6; }
}

/* ══════════════════════════════════════════
   PAIN POINTS
══════════════════════════════════════════ */
.gads-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.gads-pain-card {
  background: #16161e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 40px 34px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.gads-pain-card:hover {
  border-color: rgba(233,30,140,0.35);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(233,30,140,0.12);
}
.gads-pain-icon {
  width: 52px; height: 52px;
  background: rgba(233,30,140,0.1);
  border: 1px solid rgba(233,30,140,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.gads-pain-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.gads-pain-card p { font-size: 0.87rem; color: rgba(255,255,255,0.52); line-height: 1.72; }

/* ══════════════════════════════════════════
   WHAT'S INCLUDED — CHECKLIST
══════════════════════════════════════════ */
.gads-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 60px;
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.gads-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.gads-check-svg { flex-shrink: 0; margin-top: 1px; }
.gads-check-path {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 0.55s cubic-bezier(0.22,1,0.36,1);
}
.gads-check-item.drawn .gads-check-path { stroke-dashoffset: 0; }

/* ══════════════════════════════════════════
   GOOGLE STACK SECTION
══════════════════════════════════════════ */
.google-stack-section {
  padding: 100px 48px;
  background: #080808;
  position: relative;
  overflow: hidden;
}
.stack-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.stack-pill {
  display: inline-flex;
  padding: 6px 14px;
  background: rgba(17,17,17,0.75);
  border: 1px solid rgba(233,30,140,0.35);
  border-radius: 50px;
  font-size: 11px;
  color: #e91e8c;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.google-stack-section h2 {
  color: #ffffff;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 20px;
  max-width: 800px;
}
.google-stack-section h2 .italic-accent {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: #e91e8c;
  font-weight: 500;
}
.stack-sub {
  max-width: 640px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.stack-canvas-wrap {
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: 16px;
  overflow: hidden;
}
#gads-stack-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.stack-labels-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.stack-label {
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(0,0,0,0.85);
}
.stack-label .sub {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.8px;
  text-transform: none;
  font-weight: 400;
}
.stack-label-pink   { color: #f48cb8; }
.stack-label-purple { color: #b59bff; }

@media (max-width: 768px) {
  .google-stack-section { padding: 72px 24px; }
  .stack-canvas-wrap { height: 400px; }
  .stack-label { font-size: 9px; }
  .stack-label .sub { font-size: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  #gads-stack-canvas { opacity: 0.6; }
}

/* ══════════════════════════════════════════
   PROCESS TIMELINE
══════════════════════════════════════════ */
.gads-process-steps {
  display: flex;
  align-items: flex-start;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.gads-process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(233,30,140,0.5), rgba(124,58,237,0.5), transparent);
}
.gads-process-step {
  flex: 1;
  text-align: center;
  padding: 0 14px;
  position: relative;
}
.gads-process-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #16161e;
  border: 1px solid rgba(233,30,140,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #e91e8c;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.gads-process-step.visible .gads-process-num {
  border-color: #e91e8c;
  box-shadow: 0 0 20px rgba(233,30,140,0.3);
}
.gads-process-step h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.gads-process-step p { font-size: 0.8rem; color: rgba(255,255,255,0.52); line-height: 1.65; }

/* ══════════════════════════════════════════
   CASE STUDY
══════════════════════════════════════════ */
.gads-case-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.gads-case-metrics { display: flex; flex-direction: column; gap: 36px; }
.gads-case-metric-val {
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 900;
  color: #e91e8c;
  letter-spacing: -0.04em;
  line-height: 1;
}
.gads-case-metric-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  margin-top: 6px;
  line-height: 1.4;
}
.gads-case-text h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 28px; color: #fff; }
.gads-case-row { margin-bottom: 20px; }
.gads-case-row-label {
  font-size: 0.67rem;
  font-weight: 700;
  color: #e91e8c;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.gads-case-row p { font-size: 0.87rem; color: rgba(255,255,255,0.52); line-height: 1.72; }

/* ══════════════════════════════════════════
   WHY INSYNC
══════════════════════════════════════════ */
.gads-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.gads-why-card {
  background: #16161e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 30px;
  transition: border-color 0.3s, transform 0.3s;
}
.gads-why-card:hover {
  border-color: rgba(124,58,237,0.35);
  transform: translateY(-3px);
}
.gads-why-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.gads-why-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.gads-why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.52); line-height: 1.68; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.gads-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 130px 6vw;
  text-align: center;
  background: #080808;
}
.gads-cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
}
.gads-cta-blob--pink {
  width: 700px; height: 700px;
  background: #e91e8c;
  opacity: 0.1;
  top: -280px; left: -150px;
  animation: blobPulse 14s ease-in-out infinite;
}
.gads-cta-blob--purple {
  width: 520px; height: 520px;
  background: #7c3aed;
  opacity: 0.08;
  bottom: -200px; right: -100px;
  animation: blobPulse 17s ease-in-out infinite reverse;
}
.gads-cta-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.gads-cta-banner h2 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
.gads-cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.56);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.78;
}
.gads-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   LEAD FORM
══════════════════════════════════════════ */
.gads-form-section { padding: 100px 6vw; }
.gads-form-header { text-align: center; margin-bottom: 52px; }
.gads-form-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #fff;
}
.gads-form-header p { font-size: 0.95rem; color: rgba(255,255,255,0.52); line-height: 1.75; }

.gads-form-wrap {
  max-width: 780px;
  margin: 0 auto;
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 60px 56px;
}
.gads-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.88rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #e91e8c;
  box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
}
.form-field select { cursor: pointer; }
.form-field select option { background: #111; color: #fff; }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #ff4d6d; box-shadow: 0 0 0 3px rgba(255,77,109,0.1); }
.field-err { font-size: 0.75rem; color: #ff4d6d; min-height: 18px; }

.gdpr-field {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.gdpr-field input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #e91e8c;
  cursor: pointer;
}
.gdpr-field label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.6;
  cursor: pointer;
  font-weight: 400;
}
.gdpr-field label a { color: #e91e8c; }

.gads-form-submit-wrap { grid-column: 1 / -1; margin-top: 4px; }
.gads-submit-btn {
  width: 100%;
  padding: 17px;
  font-size: 1rem;
  font-weight: 700;
  background: #e91e8c;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  font-family: var(--sans);
  letter-spacing: 0.01em;
}
.gads-submit-btn:hover:not(:disabled) { opacity: 0.88; transform: scale(1.015); }
.gads-submit-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 40px;
  text-align: center;
  gap: 16px;
}
.form-success-tick {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(233,30,140,0.12);
  border: 1px solid rgba(233,30,140,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.form-success p { font-size: 0.9rem; color: rgba(255,255,255,0.52); line-height: 1.75; max-width: 380px; }

/* ══════════════════════════════════════════
   FOOTER ACTIVE STATE
══════════════════════════════════════════ */
.site-footer a[href*="google-ads"] { color: #e91e8c !important; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gads-pain-grid { grid-template-columns: 1fr 1fr; }
  .gads-why-grid { grid-template-columns: 1fr 1fr; }
  .gads-case-card { grid-template-columns: 1fr; gap: 48px; padding: 48px; }
  .gads-process-steps { flex-direction: column; gap: 36px; align-items: center; }
  .gads-process-steps::before { display: none; }
  .gads-process-step { max-width: 320px; }
}
@media (max-width: 640px) {
  .gads-hero-inner { padding: 160px 5vw 80px; }
  .gads-hero-h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .gads-pain-grid { grid-template-columns: 1fr; }
  .gads-checklist { grid-template-columns: 1fr; gap: 14px; }
  .gads-why-grid { grid-template-columns: 1fr; }
  .gads-case-card { padding: 32px 28px; }
  .gads-cta-banner { padding: 80px 6vw; }
  .gads-form-wrap { padding: 36px 24px; }
  .gads-form { grid-template-columns: 1fr; }
  .gads-float-dot { display: none; }
}
