/* @docs
label: Core Remedies & Modern Reset
*/
*, ::before, ::after { box-sizing: border-box; }
html { line-sizing: normal; scroll-behavior: smooth; }
body { margin: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
[hidden] { display: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: 1.2; }
img, svg, video, canvas, audio, iframe, embed, object { display: block; vertical-align: middle; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }

:root {
  /* Color Palette A - Bubblegum & Surf */
  --primary: #ea526f;        /* Bubblegum Pink */
  --primary-hover: #d63d5a;  /* Darker Pink */
  --primary-light: #fde8ec;  /* Light Pink */
  
  --secondary: #23b5d3;      /* Turquoise Surf */
  --secondary-hover: #1a9ab5;
  --accent: #279af1;         /* Blue Bell */
  --accent-hover: #1a7fd4;
  
  --text-main: #070600;      /* Pitch Black */
  --text-muted: #4a4a47;     /* Muted Black */
  --text-light: #7a7a75;     /* Light Black */
  
  --bg-body: #FFFFFF;        /* White */
  --bg-surface: #ededf5;     /* Slightly darker ghost */
  --bg-card: #ffffff;
  
  --border: #dddde8;         /* Soft border */
  
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  /* Typography Scale - Consistent across site */
  --text-xs: 0.75rem;      /* 12px - Minimal use */
  --text-sm: 0.875rem;     /* 14px - Small text, notes, badges */
  --text-base: 1rem;       /* 16px - Body text */
  --text-lg: 1.125rem;     /* 18px - Lead paragraphs, subtitles */
  --text-xl: 1.25rem;      /* 20px - Card titles, form labels */
  --text-2xl: 1.5rem;      /* 24px - Secondary headings */
  --text-3xl: 2rem;        /* 32px - Section headings (H2) */
  --text-4xl: 2.5rem;      /* 40px - Page headings */
  --text-5xl: 3.5rem;      /* 56px - Hero headings (H1) */
  
  --shadow-sm: none;
  --shadow: none;
  --shadow-lg: none;
  
  --radius-sm: 0;
  --radius: 0;
  --radius-lg: 0;
  --radius-full: 0;
  
  --container-width: 1280px;
  --header-height: 80px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
}

/* ==========================================
   HEADER & NAV
   ========================================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.main__header {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
}

.logo a {
  display: block;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 2.5rem; /* Increased gap */
  align-items: center;
}

nav a {
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  font-size: var(--text-sm);
}

nav a:hover {
  color: var(--primary);
}

/* Header CTA Buttons */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta, .login {
  display: flex;
  align-items: center;
}

.login_link {
  color: var(--text-main);
  font-weight: 600;
  margin-right: 1.5rem;
}

.login_link:hover {
  color: var(--primary);
  background: none;
}

.cta_link {
  background-color: var(--primary);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1.2;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  display: inline-block;
  text-align: center;
}

.cta_link:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  max-width: var(--container-width);
  margin: 4rem auto 6rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero_title h1 {
  font-size: var(--text-5xl);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.hero_title h2 {
  font-size: var(--text-2xl);
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.marker {
  display: inline-block;
  background: linear-gradient(120deg, #cef3f9 0%, #a8e8f3 100%);
  color: #0d7a8f;
  padding: 0.2em 0.8em;
  border-radius: var(--radius);
  font-weight: 700;
  margin: 0.5rem 0 2rem;
  transform: rotate(-1deg);
}

.hero .hero_title .cta {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
}

.cta_second {
  color: var(--text-main);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
}

.cta_second::after {
  content: "→";
  transition: transform 0.2s ease;
}

.cta_second:hover {
  color: var(--primary);
}

.cta_second:hover::after {
  transform: translateX(4px);
}

.hero_image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  /* Optional: subtle float animation */
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ==========================================
   SECTIONS & FEATURES
   ========================================== */
section {
  padding: 4rem 2rem;
}

.details {
  background-color: var(--bg-surface);
  text-align: center;
  padding: 6rem 2rem;
}

.details h2 {
  font-size: var(--text-3xl);
  margin-bottom: 4rem;
  color: var(--text-main);
}

.details__items {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.details__items-item {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}

.details__items-item:hover {
  box-shadow: var(--shadow-lg);
}

.details__items-item img {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  /* Reset filter if you want original icons or apply a unified color */
  /* filter: invert(33%) sepia(85%) saturate(1637%) hue-rotate(224deg) brightness(89%) contrast(97%); -- Example for Primary Blue */
}

.details__items-item h3 {
  font-size: var(--text-xl);
  margin-bottom: 1rem;
  color: var(--text-main);
}

.details__items-item span {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.6;
  display: block;
}

/* ==========================================
   CHANNELS SECTION
   ========================================== */
.channels {
  max-width: var(--container-width);
  margin: 4rem auto;
  text-align: center;
}

.channels h2 {
  font-size: var(--text-3xl);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.channels h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 1rem auto 0;
  border-radius: var(--radius-full);
}

.channels img {
  max-width: 90%;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.channels:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================
   FORMS
   ========================================== */
section.form {
  max-width: 700px; /* Slight increase for better readability */
  margin: 4rem auto;
  padding: 3rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center; /* Center align by default for headers */
}

section.form h1 {
  font-size: var(--text-4xl);
  margin-bottom: 1rem;
  color: var(--text-main);
}

section.form h2 {
  font-size: var(--text-lg);
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Ensure form contents are left aligned if needed, or keep centered */
.rz-web-form {
  text-align: left; 
}

/* Video iframe styling */
section.form iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--radius);
  margin-top: 1rem;
}

/* Rizer Web Form Styles */
.rz-web-form form.rz-web-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rz-web-form .rz-wrapper {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.rz-wrapper {
  margin-top: 1rem;
}

.rz-web-form .rz-label {
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--text-main);
}

.rz-web-form .rz-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  font-family: var(--font-sans);
  background: var(--bg-surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.rz-web-form .rz-input::placeholder {
  color: var(--text-light);
}

.rz-web-form .rz-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
  background: var(--bg-card);
}

.rz-web-form .rz-input.rz-error {
  border-color: var(--primary);
}

.rz-web-form .rz-input.rz-error:focus {
  box-shadow: 0 0 0 3px var(--primary-light);
}

.rz-web-form .rz-submit-btn {
  margin-top: 0.5rem;
}

.rz-web-form .rz-submit-btn .btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: var(--text-base);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.rz-web-form .rz-submit-btn .btn:hover {
  background: var(--primary-hover);
}

.rz-web-form .rz-submit-btn .btn:active {
  transform: translateY(1px);
}

.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-main);
  font-size: var(--text-sm);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--bg-surface);
}

input:focus, select:focus {
  outline: 2px solid var(--primary);
  border-color: var(--primary);
  box-shadow: none;
  background: var(--white);
}

button[type="submit"] {
  width: 100%;
  padding: 0.875rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: var(--text-base);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
  background: var(--primary-hover);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background-color: var(--bg-body);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
  margin-top: 6rem;
}

.footer__content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer__content .links {
  display: grid;
  grid-template-columns: repeat(auto-fit, 200px);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__content .links span {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__content .links span strong {
  font-size: var(--text-base);
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.footer__content a {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.footer__content a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.lastline {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-size: var(--text-sm);
}

.lastline strong {
  color: var(--text-muted);
}

/* ==========================================
   PRODUCT PAGES STYLES
   ========================================== */

.product-page h1 {
  font-size: var(--text-5xl);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.product-hero {
  max-width: 1000px;
  margin: 6rem auto;
  text-align: center;
  padding: 0 2rem;
}

.product-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.product-badge--blue {
  background: #cef3f9; /* Turquoise Light */
  color: #1a9ab5;      /* Turquoise Dark */
}

.product-hero__subtitle {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.product-hero .cta {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 1.5rem;
}

/* Product Features Grid */
.product-features {
  background: var(--bg-surface);
  padding: 6rem 2rem;
  border-radius: 0; /* Full width bg usually */
}

.product-features__grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-features h2 {
  text-align: center;
  font-size: var(--text-3xl);
  margin-bottom: 4rem;
  color: var(--text-main);
}

.product-features__item {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-features__item img {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.product-features__item:hover {
  box-shadow: var(--shadow);
}

.product-features__item h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.product-features__item p {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* Product Benefits */
.product-benefits {
  max-width: 1000px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.product-benefits h2 {
  text-align: center;
  font-size: var(--text-3xl);
  margin-bottom: 4rem;
}

.product-benefits__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-benefits__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
  height: 100%;
}

.product-benefits__item:hover {
  box-shadow: var(--shadow);
}

.benefit-number {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  min-width: 3rem;
}

.benefit-number--blue {
  color: var(--secondary);
  opacity: 0.4;
}

/* Product CTA */
.product-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  padding: 6rem 2rem;
  text-align: center;
  color: white;
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.product-cta--blue {
  background: linear-gradient(135deg, #23b5d3 0%, #1a9ab5 100%);
}

.product-cta h2 {
  color: white;
  font-size: var(--text-3xl);
  margin-bottom: 1.5rem;
}

.product-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.product-cta .cta {
  justify-content: center;
}

.product-cta .cta_link {
  background: white;
  color: var(--primary) !important;
  font-size: var(--text-base);
  padding: 1rem 2rem;
}

.product-cta--blue .cta_link {
  color: #1a9ab5 !important;
}

.product-cta .cta_link:hover {
  background: #f8fafc;
}

.product-cta__note {
  display: block;
  margin-top: 1.5rem;
  font-size: var(--text-sm);
  opacity: 0.8;
}

/* Channels Showcase (Channel Manager page) */
.channels-showcase {
  max-width: var(--container-width);
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.channels-showcase h2 {
  font-size: var(--text-3xl);
  margin-bottom: 1rem;
  color: var(--text-main);
}

.channels-showcase__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.channels-showcase img {
  max-width: 90%;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.channels-showcase:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Integration Highlight */
.integration-highlight {
  max-width: 1000px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.integration-highlight__content {
  background: var(--bg-surface);
  padding: 4rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
}

.integration-highlight__content h2 {
  font-size: var(--text-3xl);
  margin-bottom: 1rem;
  color: var(--text-main);
}

.integration-highlight__content p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.integration-highlight__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.integration-highlight__list li {
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

/* ==========================================
   TRUSTED BY SECTION
   ========================================== */
.trusted-by {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.trusted-by__label {
  color: var(--text-light);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.trusted-by__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.logo-placeholder {
  color: var(--text-light);
  font-weight: 600;
  font-size: var(--text-lg);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.logo-placeholder:hover {
  opacity: 1;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
  background: #fbfbfb;
  padding: 5rem 2rem;
  margin: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stats__item {
  text-align: center;
  position: relative;
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 1px;
  background: var(--border);
}

.stats__number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.stats__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.how-it-works {
  max-width: var(--container-width);
  margin: 6rem auto;
  padding: 0 2rem;
  text-align: center;
}

.how-it-works h2 {
  font-size: var(--text-3xl);
  margin-bottom: 1rem;
  color: var(--text-main);
}

.how-it-works__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: 4rem;
}

.how-it-works__steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.how-it-works__step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: white;
  font-size: var(--text-2xl);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.how-it-works__step h3 {
  font-size: var(--text-xl);
  margin-bottom: 1rem;
  color: var(--text-main);
}

.how-it-works__step p {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.6;
}

.how-it-works__connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 4rem;
  flex-shrink: 0;
}

/* ==========================================
   FEATURES GRID SECTION
   ========================================== */
.features-grid {
  max-width: var(--container-width);
  margin: 6rem auto;
  padding: 0 2rem;
}

.features-grid h2 {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-main);
}

.features-grid__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.features-grid__item {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.features-grid__item h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.features-grid__item p {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
  background: var(--bg-surface);
  padding: 6rem 2rem;
}

.testimonials h2 {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-main);
}

.testimonials__container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial__content p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial__content p::before {
  content: '"';
  font-size: var(--text-4xl);
  color: var(--primary);
  line-height: 0;
  vertical-align: middle;
  margin-right: 0.25rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial__info {
  display: flex;
  flex-direction: column;
}

.testimonial__info strong {
  color: var(--text-main);
  font-size: var(--text-base);
}

.testimonial__info span {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.testimonial__properties {
  color: var(--primary) !important;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ==========================================
   COMPARISON SECTION
   ========================================== */
.comparison {
  max-width: 800px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.comparison h2 {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-main);
}

.comparison__table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison__header,
.comparison__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 1.25rem 2rem;
  align-items: center;
}

.comparison__header {
  background: var(--bg-surface);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
}

.comparison__header span:nth-child(2),
.comparison__header span:nth-child(3) {
  text-align: center;
}

.comparison__header span:nth-child(2) {
  color: var(--primary);
}

.comparison__row {
  border-top: 1px solid var(--border);
}

.comparison__row span:first-child {
  color: var(--text-main);
  font-weight: 500;
}

.comparison__row span:not(:first-child) {
  text-align: center;
  font-size: var(--text-xl);
  font-weight: 700;
}

.comparison__row .check {
  color: #22c55e;
}

.comparison__row .cross {
  color: #ef4444;
}

.comparison__row .partial {
  color: #f59e0b;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
  background: var(--bg-surface);
  padding: 6rem 2rem;
}

.faq h2 {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-main);
}

.faq__container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq__item {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.faq__item h3 {
  font-size: var(--text-lg);
  margin-bottom: 1rem;
  color: var(--text-main);
}

.faq__item p {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  padding: 6rem 2rem;
  text-align: center;
  margin: 6rem 2rem;
  border-radius: var(--radius-lg);
  max-width: calc(var(--container-width) - 4rem);
  margin-left: auto;
  margin-right: auto;
}

.final-cta__content {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  color: white;
  font-size: var(--text-3xl);
  margin-bottom: 1rem;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.final-cta .cta_link {
  background: white;
  color: var(--primary) !important;
}

.final-cta .cta_link:hover {
  background: #f8fafc;
}

.cta_link--large {
  padding: 1rem 2.5rem !important;
  font-size: var(--text-base) !important;
}

.final-cta .cta_second {
  color: white;
  font-weight: 600;
}

.final-cta .cta_second:hover {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta__note {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
}

/* ==========================================
   ENHANCED FOOTER
   ========================================== */
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 700;
  font-size: var(--text-sm);
  transition: all 0.2s ease;
}

.footer__social a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.lastline__links {
  display: flex;
  gap: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .details__items,
  .product-features__grid,
  .features-grid__container,
  .testimonials__container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats__container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .how-it-works__steps {
    flex-wrap: wrap;
  }
  
  .how-it-works__connector {
    display: none;
  }
  
  .footer__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main__header {
    height: auto;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 2rem;
  }
  
  .hero .hero_title .cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .hero_image img {
    margin-top: 2rem;
  }
  
  .trusted-by__logos {
    gap: 1.5rem;
  }
  
  .logo-placeholder {
    font-size: var(--text-base);
  }
  
  .stats__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .stats__number {
    font-size: var(--text-3xl);
  }
  
  .details__items,
  .product-features__grid,
  .product-benefits__list,
  .features-grid__container,
  .testimonials__container,
  .faq__container {
    grid-template-columns: 1fr;
  }
  
  .how-it-works__step {
    max-width: 100%;
  }
  
  .comparison__header,
  .comparison__row {
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 1rem;
  }
  
  .final-cta__actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .product-benefits__item {
    flex-direction: column;
  }
  
  .integration-highlight__list {
    flex-direction: column;
    align-items: center;
  }
  
  .footer__top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer__brand {
    max-width: 100%;
    text-align: center;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .lastline {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .lastline__links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  h1, .product-page h1 { font-size: var(--text-4xl); }
  
  .details h2,
  .channels h2,
  .product-features h2,
  .product-benefits h2,
  .product-cta h2,
  .channels-showcase h2,
  .integration-highlight__content h2,
  .how-it-works h2,
  .features-grid h2,
  .testimonials h2,
  .comparison h2,
  .faq h2,
  .final-cta h2 {
    font-size: var(--text-2xl);
  }
  
  section.form h1 {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 480px) {
  .stats__container {
    grid-template-columns: 1fr;
  }
  
  .comparison__header span:first-child,
  .comparison__row span:first-child {
    font-size: var(--text-sm);
  }
}

/* ==========================================
   PRICING PAGE STYLES
   ========================================== */
.pricing-hero {
  max-width: 800px;
  margin: 6rem auto 4rem;
  text-align: center;
  padding: 0 2rem;
}

.pricing-hero h1 {
  font-size: var(--text-5xl);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.pricing-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: var(--text-base);
}

.toggle-label {
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.toggle-label--active {
  color: var(--text-main);
  font-weight: 600;
}

.toggle-divider {
  color: var(--border);
}

.toggle-save {
  background: #dcfce7;
  color: #166534;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  margin-left: 0.5rem;
}

/* Pricing Plans Grid */
.pricing-plans {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.pricing-plans__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
  border-color: var(--primary);
  border-width: 2px;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card__header h3 {
  font-size: var(--text-2xl);
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.pricing-card__header p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-main);
}

.price-amount {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.price-period {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.pricing-card__properties {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-card__cta {
  display: block;
  width: 100%;
  padding: 0.875rem;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.2s ease;
  margin-bottom: 2rem;
}

.pricing-card__cta:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pricing-card__cta--primary {
  background: var(--primary);
  border-color: var(--primary);
  color: white !important;
}

.pricing-card__cta--primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: white !important;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: var(--text-sm);
  color: var(--text-main);
}

.pricing-card__features li.included svg {
  color: #22c55e;
}

.pricing-card__features li.not-included {
  color: var(--text-light);
}

.pricing-card__features li.not-included svg {
  color: var(--text-light);
}

/* Pricing Comparison Table */
.pricing-comparison {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.pricing-comparison h2 {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-main);
}

.pricing-comparison__table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 1.25rem 2rem;
  background: var(--bg-surface);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-main);
}

.comparison-header span:not(:first-child) {
  text-align: center;
}

.comparison-category {
  padding: 1rem 2rem;
  background: var(--bg-surface);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 1px solid var(--border);
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 1rem 2rem;
  border-top: 1px solid var(--border);
  font-size: var(--text-sm);
}

.comparison-row span:not(:first-child) {
  text-align: center;
}

.comparison-row .comparison-feature {
  color: var(--text-main);
}

.comparison-row .check {
  color: #22c55e;
  font-weight: 700;
}

.comparison-row .cross {
  color: var(--text-light);
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */
.about-hero {
  max-width: 900px;
  margin: 6rem auto;
  text-align: center;
  padding: 0 2rem;
}

.about-hero h1 {
  font-size: var(--text-5xl);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.about-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Our Story Section */
.about-story {
  max-width: var(--container-width);
  margin: 6rem auto;
  padding: 0 2rem;
}

.about-story__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story__text h2 {
  font-size: var(--text-3xl);
  margin-bottom: 2rem;
  color: var(--text-main);
}

.about-story__text p {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-image-placeholder {
  background: linear-gradient(135deg, var(--primary-light) 0%, #cef3f9 100%);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.story-image-placeholder span {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--text-muted);
}

/* Values Section */
.about-values {
  background: var(--bg-surface);
  padding: 6rem 2rem;
}

.about-values h2 {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-main);
}

.about-values__grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
}

.value-card__icon {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.value-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 1rem;
  color: var(--text-main);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Team Section */
.about-team {
  max-width: var(--container-width);
  margin: 6rem auto;
  padding: 0 2rem;
}

.about-team h2 {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.about-team__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 4rem;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-member {
  text-align: center;
  padding: 2rem;
}

.team-member__avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  font-weight: 700;
  font-size: var(--text-xl);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.team-member h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.team-member__role {
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.team-member p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Partners Section */
.about-partners {
  background: var(--bg-surface);
  padding: 6rem 2rem;
  text-align: center;
}

.about-partners h2 {
  font-size: var(--text-3xl);
  margin-bottom: 1rem;
  color: var(--text-main);
}

.about-partners__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.about-partners__logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: var(--container-width);
  margin: 0 auto;
}

.partner-badge {
  background: var(--bg-card);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  min-width: 180px;
}

.partner-badge strong {
  display: block;
  font-size: var(--text-lg);
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.partner-badge span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Careers Section */
.about-careers {
  max-width: 800px;
  margin: 6rem auto;
  padding: 4rem;
  background: linear-gradient(135deg, var(--secondary) 0%, #1a9ab5 100%);
  border-radius: var(--radius-lg);
  text-align: center;
}

.about-careers h2 {
  font-size: var(--text-3xl);
  color: white;
  margin-bottom: 1rem;
}

.about-careers p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-careers .cta_link {
  background: white;
  color: var(--secondary) !important;
}

.about-careers .cta_link:hover {
  background: #f8fafc;
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */
.contact-hero {
  max-width: 800px;
  margin: 6rem auto 4rem;
  text-align: center;
  padding: 0 2rem;
}

.contact-hero h1 {
  font-size: var(--text-5xl);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.contact-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Options */
.contact-options {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.contact-options__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-option {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-option__icon {
  margin-bottom: 1.5rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-option h3 {
  font-size: var(--text-xl);
  margin-bottom: 1rem;
  color: var(--text-main);
}

.contact-option p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-option__link {
  font-weight: 600;
  color: var(--secondary);
}

.contact-option__link:hover {
  color: var(--secondary-hover);
}

/* Contact Form Section */
.contact-form-section {
  background: var(--bg-surface);
  padding: 6rem 2rem;
}

.contact-form-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-info h2 {
  font-size: var(--text-3xl);
  margin-bottom: 1rem;
  color: var(--text-main);
}

.contact-form-info > p {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-details {
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--text-main);
  font-size: var(--text-base);
}

.contact-detail svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-hours h4 {
  font-size: var(--text-base);
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.contact-hours p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.enterprise-note {
  color: var(--secondary) !important;
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  font-family: var(--font-sans);
  resize: vertical;
  transition: border-color 0.2s ease;
  background: var(--bg-surface);
}

.contact-form textarea:focus {
  outline: 2px solid var(--primary);
  border-color: var(--primary);
  background: white;
}

/* Contact Resources */
.contact-resources {
  max-width: var(--container-width);
  margin: 6rem auto;
  padding: 0 2rem;
}

.contact-resources h2 {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-main);
}

.contact-resources__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.resource-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.resource-card__icon {
  margin-bottom: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-card h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.resource-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsive Styles for New Pages */
@media (max-width: 1024px) {
  .pricing-plans__container {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-options__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-form-container {
    grid-template-columns: 1fr;
  }
  
  .contact-resources__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-hero h1,
  .about-hero h1,
  .contact-hero h1 {
    font-size: var(--text-4xl);
  }
  
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    padding: 0.75rem 1rem;
    font-size: var(--text-xs);
  }
  
  .about-story__content {
    grid-template-columns: 1fr;
  }
  
  .story-image-placeholder {
    height: 250px;
  }
  
  .about-values__grid,
  .about-team__grid {
    grid-template-columns: 1fr;
  }
  
  .about-partners__logos {
    flex-direction: column;
    align-items: center;
  }
  
  .partner-badge {
    width: 100%;
    max-width: 300px;
  }
  
  .about-careers {
    margin-left: 2rem;
    margin-right: 2rem;
    padding: 3rem 2rem;
  }
  
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-resources__grid {
    grid-template-columns: 1fr;
  }
}