/* ==========================================================================
   CELEXSA - Google Workspace Landing Page Styling (Full-Width Responsive)
   Theme: Google Blue (#0b57d0, #1a73e8, #4285f4), Accent Green (#188038)
   ========================================================================== */

:root {
  --primary-blue: #0b57d0;
  --primary-blue-hover: #0842a0;
  --google-blue: #1a73e8;
  --light-blue: #4285f4;
  --soft-blue-bg: #e8f0fe;
  
  --accent-green: #188038;
  --accent-green-hover: #137333;
  --accent-green-light: #e6f4ea;
  
  --heading-dark: #172b4d;
  --heading-dark-2: #111827;
  --text-body: #4a5568;
  --text-muted: #6b7280;
  
  --bg-page: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-light: #edf2f7;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 14px 32px rgba(11, 87, 208, 0.09);
  --shadow-card-hover: 0 20px 38px rgba(11, 87, 208, 0.12);
  --shadow-glow: 0 0 20px rgba(24, 128, 56, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Edge-to-Edge Layout */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Full-Width App Wrapper */
.landing-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg-page);
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Fluid Max-Width Section Container */
.section-container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-blue-hover);
}

/* ==========================================================================
   1. Header & Navigation (Full-Width Sticky)
   ========================================================================== */
.site-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo-text {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary-blue);
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-subtext {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  display: block;
  text-transform: uppercase;
  margin-top: 2px;
}

.brand-divider {
  width: 1px;
  height: 32px;
  background-color: var(--border-color);
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--soft-blue-bg);
  color: var(--primary-blue);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.product-tag svg {
  width: 18px;
  height: 18px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-dark);
  padding: 6px 4px;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Button Styles */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--accent-green);
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(24, 128, 56, 0.25);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary-cta:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(24, 128, 56, 0.35);
}

.btn-primary-cta:active {
  transform: translateY(0);
}

.btn-blue-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ffffff;
  color: var(--primary-blue);
  border: 1.5px solid var(--primary-blue);
  font-size: 16px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-blue-outline:hover {
  background-color: var(--soft-blue-bg);
  border-color: var(--primary-blue-hover);
  color: var(--primary-blue-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   2. Hero Section (Full Viewport Height & Balanced Alignment)
   ========================================================================== */
.hero-section {
  width: 100%;
  min-height: calc(100vh - 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(56px, 8vh, 100px) 0 clamp(48px, 6vh, 80px);
  background: radial-gradient(circle at 50% 18%, rgba(232, 240, 254, 0.85) 0%, rgba(244, 247, 251, 0.5) 55%, #ffffff 100%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft-blue-bg);
  color: var(--primary-blue);
  border: 1px solid rgba(11, 87, 208, 0.2);
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(11, 87, 208, 0.06);
}

.hero-heading {
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.14;
  font-weight: 800;
  color: var(--heading-dark-2);
  margin: 0 auto 20px;
  letter-spacing: -0.035em;
  max-width: 1000px;
}

.hero-heading span.gradient-text {
  background: linear-gradient(135deg, #0b57d0 0%, #1a73e8 45%, #188038 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheading {
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 20px;
  max-width: 900px;
}

.hero-desc {
  font-size: clamp(16px, 1.2vw, 18.5px);
  line-height: 1.7;
  color: var(--text-body);
  max-width: 880px;
  margin: 0 auto 34px;
}

.hero-highlight-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #d2e3fc;
  box-shadow: 0 4px 18px rgba(11, 87, 208, 0.08);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: clamp(13.5px, 1.1vw, 15.5px);
  font-weight: 600;
  color: var(--heading-dark);
  margin-bottom: 38px;
}

.hero-highlight-pill .pill-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-highlight-pill .pill-item.accent {
  color: var(--accent-green);
  font-weight: 700;
}

.hero-highlight-pill .pill-divider {
  color: #cbd5e1;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 14.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
  padding-top: 10px;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.hero-trust-item svg {
  color: var(--accent-green);
}

/* ==========================================================================
   3. Features Section: Full Width Grid
   ========================================================================== */
.features-section {
  width: 100%;
  padding: clamp(70px, 9vh, 110px) 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 52px;
}

.section-tag {
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--heading-dark-2);
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(15px, 1.2vw, 17.5px);
  color: var(--text-body);
  margin: 0;
  line-height: 1.65;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.5vw, 36px);
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: clamp(30px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: #b9d3fc;
}

.feature-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--soft-blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--primary-blue);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-dark-2);
}

.feature-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   4. Pricing Tiers Section: Full Width 4-Card Grid
   ========================================================================== */
.pricing-section {
  width: 100%;
  padding: clamp(70px, 9vh, 110px) 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 30px);
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: clamp(30px, 2.5vw, 38px) clamp(22px, 1.8vw, 28px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-blue);
}

.pricing-card.featured {
  border: 2.5px solid var(--primary-blue);
  box-shadow: 0 12px 36px rgba(11, 87, 208, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(11, 87, 208, 0.3);
}

.tier-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-dark-2);
  margin-bottom: 4px;
}

.tier-users {
  font-size: 14.5px;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 20px;
}

.tier-price-box {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.tier-price {
  font-size: clamp(32px, 2.8vw, 40px);
  font-weight: 800;
  color: var(--heading-dark-2);
  line-height: 1.1;
}

.tier-price-unit {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.tier-annual {
  font-size: 13px;
  color: var(--accent-green);
  font-weight: 600;
  margin-top: 6px;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex-grow: 1;
}

.tier-features li {
  font-size: 14px;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.45;
}

.tier-features li svg {
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.btn-select-tier {
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border: 1.5px solid var(--primary-blue);
  background: transparent;
  color: var(--primary-blue);
  cursor: pointer;
  transition: var(--transition);
}

.btn-select-tier:hover,
.pricing-card.featured .btn-select-tier {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 14px rgba(11, 87, 208, 0.25);
}

.pricing-card.featured .btn-select-tier:hover {
  background: var(--primary-blue-hover);
  border-color: var(--primary-blue-hover);
}

/* ==========================================================================
   5. Lead Capture Section: Balanced 2-Column Split
   ========================================================================== */
.lead-section {
  width: 100%;
  padding: clamp(70px, 9vh, 110px) 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-color);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(36px, 4vw, 68px);
  align-items: center;
}

.lead-info-col {
  padding-right: clamp(0px, 2vw, 24px);
}

.lead-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green-light);
  color: var(--accent-green);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lead-info-title {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--heading-dark-2);
  margin-bottom: 20px;
}

.lead-info-desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 30px;
}

.benefits-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--heading-dark);
  font-weight: 500;
  margin-bottom: 16px;
}

.benefits-checklist li svg {
  color: var(--accent-green);
  flex-shrink: 0;
}

.form-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: clamp(32px, 3.5vw, 48px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.form-card.highlight-pulse {
  border-color: var(--google-blue);
  box-shadow: 0 0 0 5px rgba(26, 115, 232, 0.25);
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-label .required-star {
  color: #d93025;
  margin-left: 2px;
}

.form-control-custom {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--heading-dark-2);
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3.5px rgba(11, 87, 208, 0.15);
}

.form-control-custom.input-validation-error {
  border-color: #d93025 !important;
  background-color: #fff8f7 !important;
}

.form-control-custom.input-validation-error:focus {
  box-shadow: 0 0 0 3.5px rgba(217, 48, 37, 0.2) !important;
}

select.form-control-custom {
  cursor: pointer;
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 90px;
}

.validation-msg {
  font-size: 12.5px;
  color: #d93025;
  font-weight: 600;
  margin-top: 6px;
  display: block;
  line-height: 1.35;
  animation: fadeIn 0.2s ease-in-out;
}

.validation-msg:empty {
  display: none;
}

.validation-summary-errors {
  background: #fde8e8;
  border: 1.5px solid #f8b4b4;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
  color: #9b1c1c;
  font-size: 14px;
  animation: fadeIn 0.3s ease-in-out;
}

.validation-summary-errors ul {
  margin: 6px 0 0 0;
  padding-left: 20px;
}

.cooldown-alert-box {
  background: #fffbeb;
  border: 1.5px solid #fcd34d;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
  color: #92400e;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeIn 0.3s ease-in-out;
}

.cooldown-alert-box svg {
  flex-shrink: 0;
  color: #d97706;
}

.btn-submit-lead {
  width: 100%;
  padding: 16px;
  background-color: var(--accent-green);
  color: #ffffff;
  font-size: 16.5px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(24, 128, 56, 0.28);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit-lead:hover {
  background-color: var(--accent-green-hover);
  box-shadow: 0 8px 24px rgba(24, 128, 56, 0.4);
  transform: translateY(-2px);
}

.btn-submit-lead:active {
  transform: translateY(0);
}

.btn-submit-lead:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Success Message Box */
.success-alert-box {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 20px;
  animation: fadeIn 0.4s ease-in-out;
}

.success-alert-icon {
  width: 54px;
  height: 54px;
  background: var(--accent-green-light);
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-alert-title {
  font-size: 20px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 10px;
}

.success-alert-text {
  font-size: 15px;
  color: #15803d;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   6. "CONNECT WITH US" Icon Row Section
   ========================================================================== */
.connect-section {
  width: 100%;
  padding: clamp(60px, 7vh, 90px) 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.connect-header {
  text-align: center;
  margin-bottom: 36px;
}

.connect-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-blue);
  display: block;
}

.connect-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--heading-dark-2);
  margin-top: 6px;
  margin-bottom: 0;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
}

.connect-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: clamp(22px, 2vw, 28px) clamp(18px, 1.5vw, 24px);
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
}

.connect-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.contact-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: var(--transition);
}

.avatar-blue {
  background: var(--soft-blue-bg);
  color: var(--primary-blue);
}

.avatar-green {
  background: var(--accent-green-light);
  color: var(--accent-green);
}

.avatar-whatsapp {
  background: #dcf8c6;
  color: #075e54;
}

.avatar-orange {
  background: #fef3c7;
  color: #d97706;
}

.connect-card:hover .contact-avatar {
  transform: scale(1.08);
}

.contact-meta {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-dark-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   7. Footer Banner Section (Full-Width Bleed)
   ========================================================================== */
.footer-banner {
  width: 100%;
  background: linear-gradient(135deg, #0b57d0 0%, #1a73e8 55%, #4285f4 100%);
  color: #ffffff;
  padding: clamp(50px, 7vh, 80px) 0 clamp(40px, 5vh, 60px);
  text-align: center;
}

.footer-company-title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: #ffffff;
}

.footer-company-sub {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 26px;
}

.footer-disclaimer-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
}

.sub-footer-note {
  text-align: center;
  padding: 24px 20px;
  font-size: 13px;
  color: var(--text-muted);
  background: #f8fafc;
  border-top: 1px solid var(--border-color);
}

/* Spinner */
.spinner-border-sm {
  width: 1.1rem;
  height: 1.1rem;
  border-width: 0.16em;
  display: inline-block;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .connect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .lead-grid {
    grid-template-columns: 1fr;
  }
  .lead-info-col {
    padding-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .header-nav {
    width: 100%;
    justify-content: space-between;
  }
  .header-nav .nav-links {
    display: none;
  }
  .hero-section {
    min-height: auto;
    padding: 48px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .connect-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
  }
  .hero-trust-row {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
}
