/* =========================================
   CLIQK LANDING PAGE — MAIN STYLESHEET
   Colors: #0019ED, #004AC5, #0F172A, #F7FAFF
   Text:   #191C1E (headings), #434655 (body)
   ========================================= */

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

:root {
  --blue-primary: #0019ED;
  --blue-dark:    #004AC5;
  --navy:         #0F172A;
  --light-bg:     #F7FAFF;
  --heading:      #191C1E;
  --body-text:    #434655;
  --sub-light:    #D8DADC;
  --white:        #FFFFFF;
  --yellow:       #FFC107;
  --font:         'Inter', 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--body-text);
  background: var(--white);
}

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.btn-primary {
  display: inline-block;
  background: var(--blue-primary);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

.section-tag {
  display: inline-block;
  background: #EEF1FF;
  color: var(--blue-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #e8ecf4;
  padding: 0 24px;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar-logo img { height: 38px; object-fit: contain; }
.navbar-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.navbar-links a {
  text-decoration: none;
  color: var(--heading);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--blue-primary); }
.navbar-cta {
  background: var(--blue-primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.navbar-cta:hover { background: var(--blue-dark) !important; }

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  background-image: url('/images/BG image.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 96px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.72);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 18px;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 10px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-primary);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-desc {
  font-size: 14px;
  color: #94a3b8;
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
}
.hero-badge svg { width: 16px; height: 16px; opacity: 0.7; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  flex: 1;
  min-width: 140px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- WHAT WE DO BEST ---- */
.what-we-do {
  background: var(--white);
  padding: 80px 24px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: var(--body-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #e2e8f4;
}
.service-card:hover {
  box-shadow: 0 16px 48px rgba(0,25,237,0.08);
  transform: translateY(-4px);
}
.service-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-primary);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
}

/* ---- CASE STUDIES / REAL CAMPAIGNS ---- */
.real-campaigns {
  background: var(--light-bg);
  padding: 80px 24px;
}
.campaigns-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.campaigns-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--heading);
}
.slider-nav { display: flex; gap: 10px; }
.slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--blue-primary);
  background: var(--white);
  color: var(--blue-primary);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.slider-btn:hover { background: var(--blue-primary); color: var(--white); }

.campaigns-slider { overflow: hidden; position: relative; }
.campaigns-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.campaign-card {
  min-width: calc(50% - 12px);
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.campaign-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.campaign-info { padding: 24px; }
.campaign-result {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.campaign-roas {
  font-size: 32px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 6px;
}
.campaign-roas span { font-size: 14px; font-weight: 500; color: var(--body-text); }
.campaign-desc {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
}

/* ---- BRANDS ---- */
.brands {
  background: var(--white);
  padding: 60px 24px;
}
.brands-header {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 36px;
}
.brands-list {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.brand-name {
  font-size: 18px;
  font-weight: 800;
  color: #9ca3af;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.brand-name:hover { color: var(--heading); }

/* ---- SHOPIFY RESULTS ---- */
.shopify-results {
  background: var(--light-bg);
  padding: 80px 24px;
}
.shopify-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.shopify-header h2 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
}
.shopify-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.shopify-card {
  min-width: calc(50% - 12px);
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.shopify-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 16px;
  background: #f8fafc;
}
.shopify-info { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; }
.shopify-revenue { font-size: 15px; font-weight: 600; color: var(--heading); }
.shopify-roas {
  background: var(--blue-primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

/* ---- WHY CHOOSE US ---- */
.why-choose {
  background: var(--white);
  padding: 0 24px;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- LEFT COLUMN ---- */
.why-left {
  display: flex;
  flex-direction: column;
  padding: 100px 0 120px;
}
.why-heading-sticky {
  position: sticky;
  top: 70px;
  background: var(--white);
  padding-bottom: 20px;
  z-index: 2;
}
.why-heading-sticky::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -24px;
  height: 24px;
  background: linear-gradient(to bottom, var(--white), transparent);
  pointer-events: none;
}
.why-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 14px;
}
.why-heading-sticky h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.12;
  margin-bottom: 8px;
}
.why-heading-sticky h2 em {
  font-style: normal;
  display: block;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--body-text);
}
.why-subtitle {
  font-size: 14px;
  color: var(--body-text);
  font-style: italic;
  margin-bottom: 0;
}

/* scrollable points */
.why-points {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 36px;
}
.why-point { display: flex; gap: 20px; align-items: flex-start; }
.why-point-num {
  min-width: 40px; height: 40px;
  background: var(--blue-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.why-point-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}
.why-point-body p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.75;
}
.why-cta { margin-top: 48px; }

/* ---- RIGHT COLUMN: sticky image ---- */
.why-image-inner {
  position: sticky;
  top: 90px;
  padding-top: 100px;
}
.why-image-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 25, 237, 0.15);
}

/* ---- PLANNING WITH PURPOSE ---- */
.planning {
  background: var(--navy);
  padding: 96px 24px;
  color: var(--white);
}
.planning-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.planning-left { position: sticky; top: 80px; }
.planning-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 12px;
}
.planning-left h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}
.planning-left h2 em {
  font-style: normal;
  color: var(--yellow);
}
.planning-steps { display: flex; flex-direction: column; gap: 0; }
.planning-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0.4;
  transition: opacity 0.3s;
}
.planning-step.active { opacity: 1; }
.planning-step:last-child { border-bottom: none; }
.step-line { display: flex; flex-direction: column; align-items: center; gap: 0; }
.step-dot {
  width: 12px; height: 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: background 0.3s;
  flex-shrink: 0;
}
.planning-step.active .step-dot { background: var(--blue-primary); }
.step-body {}
.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--sub-light);
  line-height: 1.7;
}

/* ---- GROWTH PARADOX ---- */
.growth-paradox {
  background: var(--white);
  padding: 80px 24px;
}
.growth-header { margin-bottom: 20px; }
.growth-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 8px;
}
.growth-header p {
  font-size: 16px;
  color: var(--body-text);
  max-width: 640px;
  line-height: 1.7;
}
.growth-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.growth-card {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 0;
  background: var(--light-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f4;
  transition: box-shadow 0.2s;
}
.growth-card:hover { box-shadow: 0 12px 40px rgba(0,25,237,0.08); }
.growth-card-body { padding: 32px 28px; }
.growth-card-num {
  width: 32px; height: 32px;
  background: var(--blue-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  margin-bottom: 16px;
}
.growth-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}
.growth-card-body p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
}
.growth-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: 24px;
}
.growth-card-img img { width: 80px; height: 80px; object-fit: contain; }

/* ---- FAQ ---- */
.faq {
  background: var(--light-bg);
  padding: 96px 24px;
}
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-inner .section-header { margin-bottom: 48px; }
.faq-inner .section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid #e2e8f4;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: 0 4px 24px rgba(0,25,237,0.08); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
}
.faq-question:hover { color: var(--blue-primary); }
.faq-icon {
  min-width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--blue-primary);
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue-primary); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.8;
}

/* ---- STILL HAVE QUESTIONS ---- */
.still-questions {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
}
.still-questions h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.still-questions p {
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 28px;
}

/* ---- CONTACT FORM MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  padding: 40px 40px 36px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s;
  max-height: 92vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #9ca3af;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--heading); }
.modal-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 6px;
}
.modal-box p { font-size: 14px; color: var(--body-text); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f4;
  border-radius: 8px;
  font-size: 14px;
  color: var(--heading);
  font-family: var(--font);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-primary);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.budget-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.budget-option input { display: none; }
.budget-option label {
  display: block;
  padding: 12px 14px;
  border: 1.5px solid #e2e8f4;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--body-text);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  margin-bottom: 0;
}
.budget-option input:checked + label {
  border-color: var(--blue-primary);
  background: #EEF1FF;
  color: var(--blue-primary);
  font-weight: 600;
}
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--blue-primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--blue-dark); }
.alert-success {
  background: #d1fae5;
  color: #065f46;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  border: 1px solid #6ee7b7;
}
.alert-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  border: 1px solid #fca5a5;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.footer-logo img { height: 36px; object-fit: contain; margin-bottom: 10px; }
.footer-desc {
  font-size: 13px;
  color: #94a3b8;
  max-width: 340px;
  line-height: 1.7;
}
.footer-right { text-align: right; }
.footer-right p { font-size: 13px; color: #94a3b8; margin-bottom: 16px; }
.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: #64748b;
  text-align: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 0; align-items: start; }
  .why-image { order: -1; }
  .why-image-inner { position: static; padding-top: 40px; }
  .why-image-inner img { height: 260px; object-fit: cover; }
  .why-heading-sticky { position: static; }
  .why-heading-sticky::after { display: none; }
  .why-left { padding: 40px 0 80px; }
  .planning-inner { grid-template-columns: 1fr; }
  .planning-left { position: static; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .growth-cards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .campaign-card, .shopify-card { min-width: 90%; }
  .hero-stat { min-width: 100px; }
  .modal-box { padding: 28px 20px 24px; }
  .budget-options { grid-template-columns: 1fr; }
  .navbar-links { display: none; }
  .growth-card { grid-template-columns: 1fr; }
  .growth-card-img { padding: 20px; height: 120px; }
}
