/*
Theme Name: FlowRevo
Theme URI: https://flowrevo.com
Author: FlowRevo Team
Description: Premium Automation Agency, Digital Marketing & Business Consultancy WordPress Theme
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: flowrevo
*/

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --primary: #0a0f1e;
  --secondary: #0d1b3e;
  --accent: #00d4ff;
  --accent2: #7c3aed;
  --accent3: #06b6d4;
  --gradient: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --gradient2: linear-gradient(135deg, #0d1b3e 0%, #1a0a3e 100%);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-dark: #0a0f1e;
  --surface: #111827;
  --surface2: #1f2937;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 25px 50px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(0,212,255,0.2);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Global grid pattern (site-wide background) ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 9999;
}

body > * { position: relative; z-index: 1; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,212,255,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,212,255,0.4);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(0,212,255,0.1);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text span { color: var(--accent); }

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.nav-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown a:hover {
  color: #fff;
  background: rgba(0,212,255,0.1);
}

.dropdown a .drop-icon { font-size: 18px; }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,212,255,0.15) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 60%, rgba(124,58,237,0.12) 0%, transparent 60%),
              var(--primary);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
  transition: var(--transition);
  cursor: default;
}

.hero-badge:hover {
  background: rgba(0,212,255,0.15);
  border-color: rgba(0,212,255,0.6);
  box-shadow: 0 0 20px rgba(0,212,255,0.35), 0 0 60px rgba(0,212,255,0.12);
  color: #fff;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
  transition: text-shadow 0.3s ease;
  cursor: default;
}

.hero-title:hover {
  text-shadow: 0 0 30px rgba(0,212,255,0.25), 0 0 60px rgba(0,212,255,0.1);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
  animation: fadeInUp 0.7s ease 0.2s both;
  transition: color 0.3s ease;
  cursor: default;
}

.hero-description:hover {
  color: rgba(201,209,217,0.9);
  text-shadow: 0 0 20px rgba(0,212,255,0.15);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-card-main {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow), var(--shadow-glow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.hero-card-main:hover {
  border-color: rgba(0,212,255,0.3);
  box-shadow: var(--shadow), 0 0 50px rgba(0,212,255,0.18), 0 0 100px rgba(0,212,255,0.07);
}

.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dashboard-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #10b981;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card {
  background: var(--surface2);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.metric-card:hover {
  border-color: rgba(0,212,255,0.35);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 25px rgba(0,212,255,0.2);
  transform: translateY(-3px);
}

.metric-value {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }

.metric-change {
  font-size: 12px;
  color: #10b981;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.chart-bar-group { display: flex; align-items: flex-end; gap: 8px; height: 80px; }

.chart-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: var(--gradient);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.chart-bar:hover { opacity: 1; filter: drop-shadow(0 0 8px rgba(0,212,255,0.5)); }

.floating-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.floating-card-1 {
  top: -20px;
  right: -20px;
  animation: float 3s ease-in-out infinite;
}

.floating-card:hover {
  border-color: rgba(0,212,255,0.4);
  box-shadow: var(--shadow), 0 0 25px rgba(0,212,255,0.25);
}

.floating-card-2 {
  bottom: -20px;
  left: -20px;
  animation: float 3s ease-in-out 1.5s infinite;
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ============================================================
   MARQUEE / CLIENTS
   ============================================================ */
#clients {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.clients-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.marquee-wrapper { overflow: hidden; }

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  transition: var(--transition);
}

.marquee-item:hover { color: #00d4ff; text-shadow: 0 0 20px rgba(0,212,255,0.6), 0 0 40px rgba(0,212,255,0.3); }

.marquee-item-icon { font-size: 24px; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services { background: var(--surface); }

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  group: true;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(0,212,255,0.2), 0 0 80px rgba(0,212,255,0.08);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: rgba(0,212,255,0.15);
  transform: scale(1.05);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.service-feature::before {
  content: '✓';
  width: 18px;
  height: 18px;
  background: rgba(0,212,255,0.15);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover { gap: 14px; }

.service-card.featured {
  background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(124,58,237,0.08) 100%);
  border-color: rgba(0,212,255,0.25);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================================================
   ABOUT / WHY US
   ============================================================ */
#about {
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 30px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface2);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.process-step:hover {
  border-color: rgba(0,212,255,0.35);
  transform: translateX(6px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 30px rgba(0,212,255,0.15);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.step-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step-content p { font-size: 13px; color: var(--text-secondary); }

.about-text .section-subtitle {
  margin: 0;
  margin-bottom: 32px;
  text-align: left;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.about-point-icon {
  font-size: 20px;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
#stats {
  background: var(--surface);
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.stat-item:hover { transform: translateY(-6px); border-color: rgba(0,212,255,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(0,212,255,0.25), 0 0 80px rgba(0,212,255,0.1); }
.stat-item:hover::before { opacity: 0.08; }

.stat-icon {
  font-size: 38px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================================
   AUTOMATION SECTION
   ============================================================ */
#automation { background: var(--primary); }

.automation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.automation-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.tool-card:hover {
  border-color: rgba(0,212,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(0,212,255,0.2);
}

.tool-icon { font-size: 36px; margin-bottom: 10px; }
.tool-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.tool-desc { font-size: 12px; color: var(--text-secondary); }

.tool-card.connected {
  border-color: rgba(16,185,129,0.3);
  background: rgba(16,185,129,0.04);
}

.tool-card.connected .tool-name::after {
  content: ' ✓';
  color: #10b981;
}

/* n8n featured full-width card */
.automation-tools .tool-card[style*="span 2"] {
  grid-column: span 2;
}

.automation-text .section-subtitle {
  margin: 0;
  text-align: left;
  margin-bottom: 32px;
}

.automation-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.benefit-item:hover { border-color: rgba(0,212,255,0.35); box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 30px rgba(0,212,255,0.15); }

.benefit-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  background: rgba(0,212,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.benefit-text p { font-size: 13px; color: var(--text-secondary); }

/* ============================================================
   CONSULTANCY SECTION
   ============================================================ */
#consultancy { background: var(--surface); }

.consultancy-header { text-align: center; margin-bottom: 60px; }

.consultancy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.consult-card {
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  text-align: center;
}

.consult-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(0,212,255,0.2);
}

.consult-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.consult-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.consult-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.consult-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.consult-tag {
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  color: var(--accent);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 500;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(124,58,237,0.1) 100%);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-banner-text p { font-size: 15px; color: var(--text-secondary); }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
#process { background: var(--primary); }

.process-header { text-align: center; margin-bottom: 70px; }

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0.3;
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(0,212,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient);
  position: relative;
  z-index: 2;
}

.timeline-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.timeline-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
#pricing { background: var(--surface); }

.pricing-header { text-align: center; margin-bottom: 60px; }

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

.toggle-label { font-size: 14px; color: var(--text-secondary); }

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--surface2);
  border-radius: 50px;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.toggle-switch.active { background: var(--gradient); }

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 4px;
  transition: var(--transition);
}

.toggle-switch.active::after { transform: translateX(24px); }

.save-badge {
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: #10b981;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(0,212,255,0.2), 0 0 80px rgba(0,212,255,0.08);
}

.pricing-card.popular {
  border-color: rgba(0,212,255,0.35);
  background: linear-gradient(135deg, rgba(0,212,255,0.06) 0%, rgba(124,58,237,0.06) 100%);
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-name { font-size: 14px; font-weight: 600; color: var(--text-secondary); margin-bottom: 12px; }
.pricing-price { margin-bottom: 6px; }
.price-currency { font-size: 1.2rem; font-weight: 700; vertical-align: top; margin-top: 8px; display: inline-block; }
.price-amount { font-size: 3rem; font-weight: 900; line-height: 1; }
.price-period { font-size: 14px; color: var(--text-secondary); }
.pricing-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.pricing-feature .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,212,255,0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-feature.disabled { color: var(--text-secondary); opacity: 0.5; }
.pricing-feature.disabled .check { background: rgba(255,255,255,0.05); color: transparent; }

.pricing-cta { width: 100%; text-align: center; justify-content: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--primary); overflow: hidden; }

.testimonials-header { text-align: center; margin-bottom: 60px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(0,212,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(0,212,255,0.15);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-text::before { content: '"'; }
.testimonial-text::after { content: '"'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--text-secondary); }
.author-company { color: var(--accent); }

/* ============================================================
   BLOG / RESOURCES
   ============================================================ */
#blog { background: var(--surface); }

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

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

.blog-card {
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.blog-thumbnail {
  height: 200px;
  background: var(--gradient2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}

.blog-thumbnail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.08;
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.blog-body { padding: 24px; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.blog-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-secondary); }

.blog-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
  transition: var(--transition);
}

.blog-card:hover .blog-title { color: var(--accent); }

.blog-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.author-mini-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact { background: var(--primary); }

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
.contact-info p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 40px; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-method:hover {
  border-color: rgba(0,212,255,0.35);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 30px rgba(0,212,255,0.15);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,212,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-method-label { font-size: 12px; color: var(--text-secondary); margin-bottom: 2px; }
.contact-method-value { font-size: 14px; font-weight: 600; }

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.social-link:hover {
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.08);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.contact-form-subtitle { font-size: 14px; color: var(--text-secondary); margin-bottom: 30px; }

.form-group { margin-bottom: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}

.form-control::placeholder { color: rgba(255,255,255,0.25); }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control option { background: var(--surface); }

.form-submit { width: 100%; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-main {
  padding: 80px 0 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .site-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy { font-size: 13px; color: var(--text-secondary); }
.footer-copy span { color: var(--accent); }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: var(--text-secondary); }
.footer-legal a:hover { color: #fff; }

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}

.newsletter-input:focus { border-color: rgba(0,212,255,0.4); }
.newsletter-input::placeholder { color: rgba(255,255,255,0.25); }

.newsletter-btn {
  padding: 10px 16px;
  background: var(--gradient);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 500;
  box-shadow: 0 8px 24px rgba(0,212,255,0.3);
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   GLOBAL HOVER GLOW — section tags, titles, subtitles, text
   ============================================================ */

.section-tag {
  transition: var(--transition);
  cursor: default;
}
.section-tag:hover {
  background: rgba(0,212,255,0.18);
  border-color: rgba(0,212,255,0.6);
  box-shadow: 0 0 20px rgba(0,212,255,0.3), 0 0 50px rgba(0,212,255,0.1);
  color: #fff;
}

.section-title {
  transition: text-shadow 0.3s ease;
  cursor: default;
}
.section-title:hover {
  text-shadow: 0 0 30px rgba(0,212,255,0.2), 0 0 60px rgba(0,212,255,0.08);
}

.section-subtitle {
  transition: color 0.3s ease, text-shadow 0.3s ease;
  cursor: default;
}
.section-subtitle:hover {
  color: rgba(201,209,217,0.95);
  text-shadow: 0 0 20px rgba(0,212,255,0.12);
}

/* Stats */
.stat-number {
  transition: filter 0.3s ease;
  cursor: default;
}
.stat-number:hover {
  filter: drop-shadow(0 0 12px rgba(0,212,255,0.5));
}

.stat-label {
  transition: color 0.3s ease;
  cursor: default;
}
.stat-label:hover {
  color: rgba(201,209,217,0.9);
}

/* Timeline round circles */
.timeline-item {
  transition: var(--transition);
  cursor: default;
}
.timeline-item:hover .timeline-number {
  box-shadow: 0 0 30px rgba(0,212,255,0.5), 0 0 60px rgba(0,212,255,0.2);
  transform: scale(1.08);
}
.timeline-number {
  transition: var(--transition);
}
.timeline-item:hover .timeline-title {
  text-shadow: 0 0 20px rgba(0,212,255,0.25);
}
.timeline-item:hover .timeline-desc {
  color: rgba(201,209,217,0.9);
}

/* CTA banner */
.cta-banner-text h3 {
  transition: text-shadow 0.3s ease;
  cursor: default;
}
.cta-banner-text h3:hover {
  text-shadow: 0 0 30px rgba(0,212,255,0.25);
}
.cta-banner-text p {
  transition: color 0.3s ease;
  cursor: default;
}
.cta-banner-text p:hover {
  color: rgba(201,209,217,0.9);
  text-shadow: 0 0 15px rgba(0,212,255,0.1);
}

/* Consult / About section titles */
.consult-title {
  transition: text-shadow 0.3s ease;
  cursor: default;
}
.consult-title:hover {
  text-shadow: 0 0 30px rgba(0,212,255,0.2);
}

/* Pricing header */
.pricing-header .section-title:hover,
.testimonials-header .section-title:hover {
  text-shadow: 0 0 30px rgba(0,212,255,0.2), 0 0 60px rgba(0,212,255,0.08);
}

/* About section text */
.about-text h2, .about-text h3 {
  transition: text-shadow 0.3s ease;
  cursor: default;
}
.about-text h2:hover, .about-text h3:hover {
  text-shadow: 0 0 30px rgba(0,212,255,0.2);
}
.about-text p {
  transition: color 0.3s ease;
  cursor: default;
}
.about-text p:hover {
  color: rgba(201,209,217,0.95);
  text-shadow: 0 0 15px rgba(0,212,255,0.1);
}

/* Contact section */
#contact .section-title:hover {
  text-shadow: 0 0 30px rgba(0,212,255,0.25), 0 0 70px rgba(0,212,255,0.1);
}
#contact .section-subtitle:hover {
  color: rgba(201,209,217,0.95);
  text-shadow: 0 0 20px rgba(0,212,255,0.15);
}

/* Automation section */
.automation-text h2, .automation-text h3 {
  transition: text-shadow 0.3s ease;
  cursor: default;
}
.automation-text h2:hover, .automation-text h3:hover {
  text-shadow: 0 0 30px rgba(0,212,255,0.2);
}
.automation-text p {
  transition: color 0.3s ease;
  cursor: default;
}
.automation-text p:hover {
  color: rgba(201,209,217,0.95);
}

  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; gap: 50px; }
  .automation-content { grid-template-columns: 1fr; gap: 50px; }
  .consultancy-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { transform: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-content { grid-template-columns: 1fr; gap: 50px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-menu, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,15,30,0.98);
    backdrop-filter: blur(20px);
    padding: 80px 24px 40px;
    z-index: 999;
    gap: 2px;
    overflow-y: auto;
  }

  /* Close (X) button sits top-right when menu is open */
  .nav-toggle[aria-expanded="true"] {
    position: fixed;
    top: 18px;
    right: 16px;
    z-index: 1000;
  }

  .nav-menu.open > li > a {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 13px 20px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-menu.open > li > a:hover {
    background: rgba(0,212,255,0.08);
    color: #00d4ff;
  }

  .pricing-grid { grid-template-columns: 1fr !important; max-width: 480px; margin: 0 auto; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.03);
    margin-top: 4px;
  }

  .services-grid { grid-template-columns: 1fr; }
  .consultancy-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .automation-tools { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .automation-tools { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 24px; }
  .newsletter-form { flex-direction: column; }
}
