/* ================================
   COLOR PALETTE
   Swap this :root block to change themes
   ================================ */

/* CURRENT: Original Palette */
:root {
  /* Primary - buttons, CTAs, main accent */
  --primary: #FF6B6B;
  --primary-dark: #E85555;
  
  /* Secondary - highlights, featured elements */
  --secondary: #4ECDC4;
  --secondary-light: #A8E6CF;
  
  /* Accent - subtle backgrounds, tags */
  --accent-1: #FFE5D9;
  --accent-2: #E8D5FF;
  --accent-3: #FFE66D;
  
  /* Neutrals */
  --background: #FFF9F0;
  --surface: #FFFFFF;
  --text: #2C3E50;
  --text-light: #34495E;
}

/* 
PALETTE 1: Royal & Confident
:root {
  --primary: #7C3AED;
  --primary-dark: #5B21B6;
  --secondary: #DDD6FE;
  --secondary-light: #F3F0FF;
  --accent-1: #FCA5A5;
  --accent-2: #99F6E4;
  --accent-3: #FCA5A5;
  --background: #FFFDF9;
  --surface: #FFFFFF;
  --text: #1E1B4B;
  --text-light: #3730A3;
}
*/

/* 
PALETTE 2: Soft & Approachable
:root {
  --primary: #A855F7;
  --primary-dark: #7E22CE;
  --secondary: #E9D5FF;
  --secondary-light: #FAF5FF;
  --accent-1: #FDBA9A;
  --accent-2: #A7F3D0;
  --accent-3: #FDBA9A;
  --background: #FFFCF7;
  --surface: #FFFFFF;
  --text: #2E1065;
  --text-light: #581C87;
}
*/

/* 
PALETTE 3: Bold & Electric
:root {
  --primary: #8B5CF6;
  --primary-dark: #6D28D9;
  --secondary: #C4B5FD;
  --secondary-light: #EDE9FE;
  --accent-1: #FB7185;
  --accent-2: #5EEAD4;
  --accent-3: #FB7185;
  --background: #FEFDFB;
  --surface: #FFFFFF;
  --text: #1E1642;
  --text-light: #4C1D95;
}
*/


/* PALETTE 4: Dusty & Sophisticated */
/* :root {
  --primary: #9061F9;
  --primary-dark: #6B21A8;
  --secondary: #58bb8d;
  --secondary-light: #74edb5;
  --accent-1: #afa2d1;
  --accent-2: #98a2f3;
  --accent-3: #e6d5ff;
  --background: #FFF9F0;
  --surface: #FFFFFF;
  --text: #2D2A3E;
  --text-light: #4A4568;
} */


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.3 !important;
}

/* Animated grain overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
}

/* ================================
   CONTAINER SYSTEM
   ================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================================
   NAVIGATION
   ================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  background: rgba(255, 249, 240, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 2px solid var(--text);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 200px;
  height: auto;
}


.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: var(--text) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.nav-cta::after {
  display: none !important;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  border-radius: 50%;
  opacity: 0.5;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.hero-bg-shape-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--secondary-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, 30px) rotate(5deg); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-content h1 span {
  color: var(--primary);
  position: relative;
}

.hero-content h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--accent-3);
  z-index: -1;
  transform: skewX(-5deg);
}

.hero-tagline {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--surface);
  border: 2px solid var(--text);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 3px 3px 0 var(--text);
  transition: all 0.2s;
  color: var(--text);
}

.badge:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--text);
}

.badge.iterable {
  background: var(--secondary);
  color: var(--text);
}

.badge.pet {
  background: var(--accent-1);
}

.badge.travel {
  background: var(--accent-2);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--surface);
  text-decoration: none;
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  font-size: 1rem;
  line-height: 1.1;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid var(--text);
  transition: all 0.3s;
  font-size: 1rem;
  line-height: 1.1;
}

.btn-secondary:hover {
  background: var(--text);
  color: var(--surface);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--surface);
  border: 3px solid var(--text);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 8px 8px 0 var(--text);
  transform: rotate(2deg);
  animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-10px); }
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed var(--accent-1);
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.hero-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--text);
}

.hero-card-stat {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--accent-1);
}

.metric-row:last-child {
  border-bottom: none;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.metric-value {
  font-weight: 600;
  font-size: 1.1rem;
}

.metric-value.up {
  color: var(--secondary);
}

.floating-badge {
  position: absolute;
  background: var(--surface);
  border: 2px solid var(--text);
  border-radius: 100px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 4px 4px 0 var(--text);
  animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge-1 {
  top: -20px;
  right: 40px;
  background: var(--accent-3);
  animation-delay: 0s;
}

.floating-badge-2 {
  bottom: 80px;
  left: -30px;
  background: var(--accent-2);
  animation-delay: 1s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}




/* ================================
   SECTION COMMON STYLES
   ================================ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  display: inline-block;
  background: var(--accent-1);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
  padding: 6rem 0;
  background: var(--surface);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0,
    var(--primary) 20px,
    var(--secondary) 20px,
    var(--secondary) 40px,
    var(--accent-3) 40px,
    var(--accent-3) 60px,
    var(--accent-2) 60px,
    var(--accent-2) 80px
  );
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--background);
  border: 3px solid var(--text);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 var(--text);
}

.service-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--surface);
  border: 2px solid var(--text);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 4px 4px 0 var(--text);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--text);
  font-size: 0.95rem;
}

.service-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--accent-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* ================================
   ENGAGEMENT SECTION
   ================================ */
.engagement {
  padding: 6rem 0;
  background: var(--text);
  color: var(--surface);
  position: relative;
}

.engagement .section-eyebrow {
  background: var(--primary);
  color: var(--surface);
}

.engagement .section-title {
  color: var(--surface);
}

.engagement .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.engagement-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.engagement-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.3s;
  position: relative;
}

.engagement-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.engagement-card.popular {
  border-color: var(--primary);
  background: rgba(124,58,237,0.1);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--surface);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.engagement-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.engagement-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--surface);
}

.engagement-subtitle {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.engagement-description {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.engagement-features {
  list-style: none;
  margin-bottom: 2rem;
}

.engagement-features li {
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.engagement-features li::before {
  content: '→';
  color: var(--secondary);
}

.engagement-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ================================
   INDUSTRIES SECTION
   ================================ */
.industries {
  padding: 6rem 0;
  background: var(--background);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.industry-card {
  background: var(--surface);
  border: 3px solid var(--text);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.industry-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 8px 8px 0 var(--text);
}

.industry-card.primary {
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
}

.industry-card.primary .industry-badge {
  background: var(--primary);
  color: var(--surface);
}

.industry-emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.industry-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.industry-description {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.industry-badge {
  display: inline-block;
  background: var(--secondary-light);
  color: var(--text);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ================================
   PLATFORMS SECTION
   ================================ */
.platforms {
  padding: 6rem 0;
  background: var(--secondary);
  text-align: center;
}

.platforms-inner {
  max-width: 800px;
  margin: 0 auto;
}

.platforms h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.platforms p {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 3rem;
  opacity: 0.9;
}

.platform-logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  padding: 1.5rem 3rem;
  border-radius: 100px;
  border: 3px solid var(--text);
  box-shadow: 6px 6px 0 var(--text);
  margin-bottom: 2rem;
}

.platform-logo img {
  height: auto;
  width: 200px;
  max-width: 100%;
}

.platform-logo span {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.platform-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.8;
}

/* ================================
   CASE STUDIES SECTION
   ================================ */
.case-studies {
  padding: 6rem 0;
  background: var(--surface);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.case-study-card {
  background: var(--background);
  border: 3px solid var(--text);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 var(--text);
}

.case-study-image {
  height: 200px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-bottom: 3px solid var(--text);
}

.case-study-content {
  padding: 2rem;
}

.case-study-industry {
  display: inline-block;
  background: var(--secondary-light);
  color: var(--text);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.case-study-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.case-study-results {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.result-item {
  text-align: center;
}

.result-value {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.result-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

.case-study-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.case-study-link:hover {
  text-decoration: underline;
}

/* ================================
   BLOG SECTION
   ================================ */
.blog {
  padding: 6rem 0;
  background: var(--background);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--surface);
  border: 3px solid var(--text);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 8px 8px 0 var(--text);
}

.blog-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 3px solid var(--text);
}

.blog-card:nth-child(1) .blog-image {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.blog-card:nth-child(2) .blog-image {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
}

.blog-card:nth-child(3) .blog-image {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
}

.blog-content {
  padding: 1.5rem;
}

.blog-tag {
  display: inline-block;
  background: var(--secondary-light);
  color: var(--text);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-link:hover {
  text-decoration: underline;
}

/* ================================
   TEAM SECTION
   ================================ */
.team {
  padding: 6rem 0;
  background: var(--surface);
}

.team-content {
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: 4rem;
  align-items: center;
}

.team-image {
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid var(--text);
  box-shadow: 8px 8px 0 var(--text);
}

.team-image img {
  width: 100%;
  height: auto;
  display: block;
}

.team-blurb p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.team-blurb p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .team-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ================================
   CTA SECTION
   ================================ */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.cta-shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.cta-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: 10%;
}

.cta-shape-3 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 20%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 3rem;
  color: var(--surface);
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.cta .btn-primary {
  background: var(--accent-1);
  color: var(--primary);
  border-color: var(--primary);
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
}

.cta .btn-primary:hover {
  background: var(--background);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: var(--text);
  color: var(--surface);
  padding: 4rem 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.logo-icon img {
    max-width: 50px;
    height: auto;
    background-color: var(--primary);
    padding: 10px;
    border-radius: 50%;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-brand a {
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom p a {
  color: inherit !important;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--surface);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-column ul a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ================================
   RESPONSIVE STYLES
   ================================ */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 7rem 0 4rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-tagline {
    margin: 0 auto 2rem;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .services-grid,
  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .engagement-cards,
  .industries-grid,
  .blog-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .platform-stats {
    gap: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .case-study-results {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .result-item {
    flex: 1 1 30%;
  }
}

/* ================================
   CTA FORM
   ================================ */
.cta-form-wrapper {
  margin-top: 2rem;
}

.cta-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  flex-direction: column;
}

.form-field {
  flex: 1;
  min-width: 350px;
}

.form-field input {
  width: 100%;
  padding: .8rem 1.25rem;
  border: 2px solid var(--surface);
  border-radius: 100px;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--text);
  transition: all 0.2s;
}

.form-field input::placeholder {
  color: var(--text-light);
}

.form-field input:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-form .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status.success {
  color: var(--surface);
}

.form-status.error {
  color: var(--accent-3);
}

/* Honeypot - hide from humans */
.form-field-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-form {
    flex-direction: column;
  }

  .form-field {
    width: 100%;
  }

  .cta-form .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* ================================
   LEGAL PAGES (Privacy, Terms, etc.)
   ================================ */
.legal-page {
  padding: 10rem 0 6rem;
  background: var(--surface);
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content ul li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--primary);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* FONT AWESOME */

/* .fatl:after, .fa-thumbprint:after {
    color: var(--primary) !important;
    opacity: .4 !important;
} */
