/*
Theme Name: Digi Spheres
Theme URI: https://www.digispheres.com
Author: Digi Spheres
Author URI: https://www.digispheres.com
Description: A performance-led digital marketing agency theme for Digi Spheres, Jaipur. Built for Elementor Pro compatibility with full custom design system.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
License URI: #
Text Domain: digispheres
Tags: elementor, business, agency, marketing, one-page, full-width-template
*/

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --navy:        #0D1B3E;
  --navy-mid:    #152752;
  --navy-light:  #1e3a6e;
  --cream:       #F7F4EE;
  --cream-dark:  #EDE9E0;
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --white:       #FFFFFF;
  --black:       #08112A;
  --text-muted:  #8A8F9E;
  --border:      rgba(201,169,110,0.2);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:      2px;
  --transition:  0.25s ease;

  --container:   1280px;
  --gutter:      60px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* =============================================
   TYPOGRAPHY SCALE
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
}

h1 { font-size: clamp(48px, 6vw, 80px); }
h2 { font-size: clamp(34px, 4vw, 54px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 15px; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

em, i { font-style: italic; }
strong, b { font-weight: 500; }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.ds-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.ds-section {
  padding-block: 100px;
}

.ds-section--navy    { background-color: var(--navy); }
.ds-section--black   { background-color: var(--black); }
.ds-section--cream   { background-color: var(--cream); }
.ds-section--white   { background-color: var(--white); }

/* Grid helpers */
.ds-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ds-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ds-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.ds-grid-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,169,110,0.1); }
.ds-grid-results  { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1px; background: rgba(13,27,62,0.08); }

/* Flex helpers */
.ds-flex { display: flex; }
.ds-flex-center { display: flex; align-items: center; justify-content: center; }
.ds-flex-between { display: flex; align-items: center; justify-content: space-between; }

/* =============================================
   SECTION LABELS / EYEBROWS
   ============================================= */
.ds-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ds-eyebrow__line {
  width: 24px;
  height: 0.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.ds-eyebrow__text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Centered eyebrow variant */
.ds-eyebrow--center {
  justify-content: center;
}
.ds-eyebrow--center .ds-eyebrow__line:last-child {
  display: block;
}

/* =============================================
   BUTTONS
   ============================================= */
.ds-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  border-radius: var(--radius);
}

.ds-btn--primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
}
.ds-btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: var(--navy);
}

.ds-btn--dark {
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
}
.ds-btn--dark:hover {
  background: var(--navy-light);
  color: var(--white);
}

.ds-btn--ghost {
  background: transparent;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  font-size: 11px;
}
.ds-btn--ghost:hover {
  background: var(--gold);
  color: var(--navy);
}

.ds-btn--text {
  background: none;
  color: rgba(255,255,255,0.6);
  padding: 0;
  gap: 8px;
}
.ds-btn--text:hover { color: var(--gold); }

.ds-btn__arrow {
  width: 20px;
  height: 20px;
  border: 0.5px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* =============================================
   NAVIGATION
   ============================================= */
.ds-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  background: rgba(13,27,62,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(201,169,110,0.15);
  transition: background var(--transition);
}

.ds-nav.scrolled {
  background: rgba(13,27,62,0.99);
}

.ds-nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ds-nav__logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.ds-nav__wordmark {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
}

.ds-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.ds-nav__links a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition);
}
.ds-nav__links a:hover { color: var(--gold); }

.ds-nav__links .ds-btn--ghost {
  padding: 8px 20px;
  font-size: 11px;
}

/* Mobile hamburger */
.ds-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.ds-nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

.ds-nav__toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ds-nav__toggle.active span:nth-child(2) { opacity: 0; }
.ds-nav__toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu drawer */
.ds-nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(13,27,62,0.99);
  backdrop-filter: blur(12px);
  padding: 32px var(--gutter);
  border-bottom: 0.5px solid rgba(201,169,110,0.15);
  z-index: 999;
  flex-direction: column;
  gap: 24px;
}

.ds-nav__mobile.open { display: flex; }

.ds-nav__mobile a {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--transition);
  padding-block: 4px;
}
.ds-nav__mobile a:hover { color: var(--gold); }

/* =============================================
   HERO
   ============================================= */
.ds-hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.ds-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.ds-hero__bg-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.ds-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
}

.ds-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.ds-hero__eyebrow-line {
  width: 32px;
  height: 0.5px;
  background: var(--gold);
}

.ds-hero__eyebrow-text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.ds-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 8px;
}

.ds-hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.ds-hero__sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
  margin-top: 20px;
  margin-bottom: 48px;
}

.ds-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ds-hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 0.5px solid rgba(201,169,110,0.15);
}

.ds-hero__stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.ds-hero__stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.ds-hero__stat-divider {
  width: 0.5px;
  background: rgba(201,169,110,0.15);
  align-self: stretch;
}

/* Hero Right Panel */
.ds-hero__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px 80px 0;
  z-index: 2;
}

.ds-dashboard {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.ds-dashboard__floating-tag {
  position: absolute;
  right: -24px;
  top: 40px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
}

.ds-dashboard__card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  padding: 36px;
}

.ds-dashboard__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ds-dashboard__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ECF9A;
  flex-shrink: 0;
}

.ds-dashboard__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201,169,110,0.1);
  margin-bottom: 1px;
}

.ds-dashboard__metric {
  background: rgba(13,27,62,0.8);
  padding: 20px;
}

.ds-dashboard__metric-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
}

.ds-dashboard__metric-key {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.ds-dashboard__metric-delta {
  color: #6ECF9A;
  font-size: 11px;
  margin-top: 2px;
}

.ds-dashboard__footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 0.5px solid rgba(201,169,110,0.1);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* =============================================
   TRUST BAR
   ============================================= */
.ds-trust {
  background: var(--cream-dark);
  border-top: 0.5px solid rgba(13,27,62,0.1);
  border-bottom: 0.5px solid rgba(13,27,62,0.1);
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.ds-trust__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.ds-trust__divider {
  width: 0.5px;
  height: 20px;
  background: rgba(13,27,62,0.15);
  flex-shrink: 0;
}

.ds-trust__logos {
  display: flex;
  align-items: center;
  gap: 48px;
  flex: 1;
  overflow: hidden;
}

.ds-trust__logo-item {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(13,27,62,0.4);
  white-space: nowrap;
}

/* Marquee animation for mobile */
@keyframes ds-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   POSITIONING / ABOUT
   ============================================= */
.ds-about {
  background: var(--white);
}

.ds-about__body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(13,27,62,0.65);
  margin: 24px 0 36px;
  max-width: 480px;
}

.ds-pillars { display: flex; flex-direction: column; }

.ds-pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 0.5px solid rgba(13,27,62,0.06);
}
.ds-pillar:last-child { border-bottom: none; }

.ds-pillar__num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  width: 24px;
  flex-shrink: 0;
  padding-top: 2px;
}

.ds-pillar__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.ds-pillar__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   SERVICES
   ============================================= */
.ds-services {
  background: var(--navy);
}

.ds-services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.ds-service-card {
  background: var(--navy);
  padding: 40px 36px;
  position: relative;
  transition: background var(--transition);
  cursor: pointer;
}

.ds-service-card:hover { background: var(--navy-mid); }

.ds-service-card--featured {
  background: var(--navy-mid);
  border-top: 1px solid var(--gold);
}

.ds-service-card__icon {
  width: 40px;
  height: 40px;
  border: 0.5px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 16px;
}

.ds-service-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.ds-service-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.ds-service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ds-service-card__tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 0.5px solid rgba(201,169,110,0.25);
  padding: 4px 10px;
}

.ds-service-card__arrow {
  position: absolute;
  bottom: 36px;
  right: 36px;
  width: 28px;
  height: 28px;
  border: 0.5px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,169,110,0.4);
  font-size: 13px;
  transition: all var(--transition);
}

.ds-service-card:hover .ds-service-card__arrow {
  border-color: var(--gold);
  color: var(--gold);
}

/* =============================================
   CASE STUDIES / RESULTS
   ============================================= */
.ds-results {
  background: var(--cream);
}

.ds-results__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.ds-result-card {
  background: var(--white);
  padding: 44px;
}

.ds-result-card--small-wrap {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: rgba(13,27,62,0.08);
}

.ds-result-card--small {
  background: var(--white);
  padding: 32px;
}

.ds-result-card--small-alt { background: var(--cream); }

.ds-result__industry {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.ds-result__client {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}

.ds-result__scope {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.ds-result__metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.ds-result__metric-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--navy);
}

.ds-result__metric-key {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.ds-result__link {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 0.5px solid var(--navy);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--transition);
}
.ds-result__link:hover { opacity: 0.6; }

/* =============================================
   PROCESS
   ============================================= */
.ds-process {
  background: var(--navy);
}

.ds-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border: 0.5px solid rgba(201,169,110,0.1);
}

.ds-process__step {
  padding: 40px 32px;
  border-right: 0.5px solid rgba(201,169,110,0.1);
  position: relative;
}

.ds-process__step:last-child { border-right: none; }

.ds-process__step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.ds-process__step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.ds-process__step-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.ds-process__connector {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 2;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.ds-testimonials { background: var(--white); }

.ds-testimonial-card {
  border: 0.5px solid rgba(13,27,62,0.08);
  padding: 36px;
}

.ds-testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.8;
  color: rgba(201,169,110,0.3);
  margin-bottom: 16px;
}

.ds-testimonial__text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 24px;
}

.ds-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 0.5px solid rgba(13,27,62,0.06);
}

.ds-testimonial__avatar {
  width: 36px;
  height: 36px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  flex-shrink: 0;
}

.ds-testimonial__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.ds-testimonial__role {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* =============================================
   CTA BAND
   ============================================= */
.ds-cta {
  background: var(--navy);
  padding: 80px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 0.5px solid rgba(201,169,110,0.2);
  flex-wrap: wrap;
}

.ds-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.ds-cta__heading em {
  font-style: italic;
  color: var(--gold);
}

.ds-cta__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 420px;
}

.ds-cta__form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 400px;
}

.ds-cta__input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(201,169,110,0.25);
  border-right: none;
  padding: 14px 20px;
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.ds-cta__input::placeholder { color: rgba(255,255,255,0.3); }
.ds-cta__input:focus { border-color: rgba(201,169,110,0.5); }

.ds-cta__submit {
  background: var(--gold);
  border: none;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.ds-cta__submit:hover { background: var(--gold-light); }

.ds-cta__micro {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  margin-top: 10px;
}

/* =============================================
   FOOTER
   ============================================= */
.ds-footer {
  background: var(--black);
  padding: 60px var(--gutter) 32px;
}

.ds-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(201,169,110,0.1);
  margin-bottom: 32px;
}

.ds-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  text-decoration: none;
}

.ds-footer__brand-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  margin: 16px 0 24px;
}

.ds-footer__email {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.ds-footer__email:hover { color: var(--gold); }

.ds-footer__col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.ds-footer__links { display: flex; flex-direction: column; gap: 12px; }

.ds-footer__links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}
.ds-footer__links a:hover { color: var(--gold); }

.ds-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ds-footer__copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

.ds-footer__socials { display: flex; gap: 12px; }

.ds-footer__social {
  width: 32px;
  height: 32px;
  border: 0.5px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all var(--transition);
  border-radius: var(--radius);
}
.ds-footer__social:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.ds-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ds-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   ELEMENTOR COMPATIBILITY
   ============================================= */

/* Let Elementor control section padding when it's managing the layout */
.elementor-section.ds-section-elementor {
  padding: 0;
}

/* Ensure Elementor columns don't break our grid */
.elementor-widget-wrap {
  padding: 0 !important;
}

/* Override Elementor default widget padding when needed */
.elementor-widget:not(:last-child) {
  margin-bottom: 0;
}

/* Make Elementor full-width sections work properly */
.elementor-section-full_width .elementor-container {
  max-width: 100%;
}

/* =============================================
   WORDPRESS CORE STYLES
   ============================================= */

/* Alignment */
.alignleft   { float: left; margin: 0 1.5em 1.5em 0; }
.alignright  { float: right; margin: 0 0 1.5em 1.5em; }
.aligncenter { display: block; margin-inline: auto; }
.alignwide   { max-width: 1100px; margin-inline: auto; }
.alignfull   { max-width: 100%; }

/* Screen reader text */
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* WP Image Captions */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* Gutenberg block spacing */
.wp-block-image { margin: 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --gutter: 40px;
  }
  .ds-grid-2   { grid-template-columns: 1fr; gap: 48px; }
  .ds-grid-4   { grid-template-columns: 1fr 1fr; }
  .ds-process__steps { grid-template-columns: 1fr 1fr; }
  .ds-hero     { grid-template-columns: 1fr; }
  .ds-hero__right { display: none; }
  .ds-footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root {
    --gutter: 24px;
  }
  .ds-section { padding-block: 64px; }
  .ds-grid-3  { grid-template-columns: 1fr; }
  .ds-grid-services { grid-template-columns: 1fr; }
  .ds-grid-results  { grid-template-columns: 1fr; }
  .ds-services__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ds-results__header  { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ds-cta      { flex-direction: column; }
  .ds-cta__form { max-width: 100%; }
  .ds-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .ds-footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .ds-nav__links { display: none; }
  .ds-nav__toggle { display: flex; }
  .ds-trust__logos { gap: 28px; }

  /* Mobile trust marquee */
  .ds-trust__logos {
    animation: ds-marquee 18s linear infinite;
    width: max-content;
  }

  .ds-process__steps { grid-template-columns: 1fr; border: none; gap: 1px; }
  .ds-process__step  { border-right: none; border-bottom: 0.5px solid rgba(201,169,110,0.1); }
  .ds-process__connector { display: none; }

  .ds-hero__stats { gap: 20px; }
  .ds-hero__stat-num { font-size: 28px; }

  .ds-result-card { padding: 28px; }
  .ds-result__metrics { gap: 20px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .ds-hero__left { padding: 60px 20px; }
  .ds-hero__stats { flex-wrap: wrap; gap: 16px; }
  .ds-hero__stat-divider { display: none; }
  .ds-cta__form { flex-direction: column; }
  .ds-cta__input { border-right: 0.5px solid rgba(201,169,110,0.25); border-bottom: none; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  .ds-fade-up { opacity: 1; transform: none; transition: none; }
  .ds-trust__logos { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
