@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy: #0a1628;
  --navy-light: #111d35;
  --blue: #3b82f6;
  --blue-dark: #1d4ed8;
  --blue-glow: rgba(59, 130, 246, 0.15);
  --green: #10b981;
  --green-dark: #059669;
  --orange: #f59e0b;
  --purple: #8b5cf6;
  --red: #ef4444;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --max-width: 1200px;
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--blue-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--gray-900);
}

.nav-links a.active {
  color: var(--blue);
}

.lang-switch {
  display: flex;
  gap: 4px;
  padding: 3px;
  background: var(--gray-100);
  border-radius: 6px;
}

.lang-switch a {
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  border-radius: 4px;
  transition: all 0.2s;
}

.lang-switch a.active {
  background: var(--white);
  color: var(--gray-900);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-200);
    gap: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 8px 0;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  padding: calc(var(--header-height) + 80px) 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1e293b 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, var(--blue-glow), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.1), transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 24px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-dark-outline {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-dark-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 48px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.trust-bar .container {
  text-align: center;
}

.trust-bar p {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-400);
}

.trust-logo .icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== VALUE PROPS ===== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.value-icon.blue { background: rgba(59, 130, 246, 0.1); color: var(--blue); }
.value-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.value-icon.purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
.value-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--orange); }

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== WORDPRESS PLUGIN FEATURE ===== */
.wordpress-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--gray-900) 58%, #1e1b4b 100%);
  color: var(--white);
}

.wordpress-section .section-label {
  color: #93c5fd;
}

.wordpress-section .section-header h2 {
  color: var(--white);
}

.wordpress-section .section-header p {
  color: var(--gray-300);
}

.wordpress-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.24);
  color: var(--gray-300);
}

.wordpress-card:hover {
  border-color: rgba(96, 165, 250, 0.68);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.24);
}

.wordpress-card h3 {
  color: var(--white);
}

.wordpress-card p {
  color: var(--gray-300);
}

.wordpress-card code {
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(15, 23, 42, 0.7);
  color: #bfdbfe;
  font-family: var(--font-mono);
  font-size: 0.86em;
}

.wordpress-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
  background: var(--gray-50);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-200);
  white-space: nowrap;
}

.comparison-table thead th:first-child {
  width: 30%;
}

.comparison-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--gray-50);
}

.check {
  color: var(--green);
  font-weight: bold;
}

.cross {
  color: var(--gray-300);
}

.highlight-col {
  background: rgba(59, 130, 246, 0.04);
}

.highlight-col th {
  color: var(--blue);
  position: relative;
}

.highlight-col.th-header::after {
  content: 'RECOMMENDED';
  display: block;
  font-size: 0.6rem;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* ===== BENEFITS ===== */
.benefits-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.benefits-section .section-label {
  color: var(--green);
}

.benefits-section .section-header h2 {
  color: var(--white);
}

.benefits-section .section-header p {
  color: var(--gray-300);
}

.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.benefit-row:last-child {
  margin-bottom: 0;
}

.benefit-row.reverse {
  direction: rtl;
}

.benefit-row.reverse > * {
  direction: ltr;
}

.benefit-text h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.benefit-text p {
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-300);
  font-size: 0.95rem;
}

.benefit-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-visual {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px;
}

.benefit-visual h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.code-block {
  background: var(--gray-900);
  border-radius: 8px;
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray-300);
  overflow-x: auto;
}

.code-block .comment { color: var(--gray-500); }
.code-block .keyword { color: var(--purple); }
.code-block .string { color: var(--green); }
.code-block .number { color: var(--orange); }

@keyframes flow {
  0% { opacity: 0; transform: translateX(-8px); }
  20% { opacity: 1; transform: translateX(0); }
  80% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(8px); }
}

.flow-line {
  animation: flow 3s infinite;
}

.flow-line:nth-child(2) { animation-delay: 0.5s; }
.flow-line:nth-child(3) { animation-delay: 1s; }

@media (max-width: 768px) {
  .benefit-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .benefit-row.reverse {
    direction: ltr;
  }
}

/* ===== ARCHITECTURE ===== */
.arch-diagram {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 40px;
  overflow-x: auto;
}

.arch-layers {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.arch-layer {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.arch-layer-label {
  width: 120px;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  padding: 12px;
  display: flex;
  align-items: center;
}

.arch-blocks {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

.arch-block {
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.arch-block.blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-dark);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.arch-block.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green-dark);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.arch-block.purple {
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.arch-block.orange {
  background: rgba(245, 158, 11, 0.1);
  color: #b45302;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.arch-block.gray {
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}

/* ===== INTEGRATION CARDS ===== */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.integration-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.2s;
}

.integration-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
}

.integration-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.integration-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.integration-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.integration-card code {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--gray-600);
}

.tag-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-500);
}

/* ===== STAT CARDS ===== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 56px 0;
}

.stat-card {
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ===== COMPARISON SECTION (WHY US) ===== */
.provider-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.provider-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}

.provider-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
}

.provider-card.featured {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.provider-header {
  padding: 24px;
  text-align: center;
}

.provider-header.recolo-header {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
}

.provider-header.alt-header {
  background: var(--gray-50);
}

.provider-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.provider-header .subtitle {
  font-size: 0.85rem;
  opacity: 0.8;
}

.provider-body {
  padding: 24px;
}

.provider-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.provider-feature .icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.provider-feature .icon.check { color: var(--green); }
.provider-feature .icon.info { color: var(--blue); }

.price-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  color: var(--green-dark);
}

.provider-cta {
  padding: 16px 24px;
  text-align: center;
  border-top: 1px solid var(--gray-100);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: var(--gray-50);
}

.cta-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0 24px;
  background: var(--navy);
  color: var(--gray-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--blue-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  color: var(--gray-900);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-item-text span {
  color: var(--gray-500);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .value-grid {
    grid-template-columns: 1fr;
  }

  .provider-compare {
    grid-template-columns: 1fr;
  }

  .integration-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: calc(var(--header-height) + 48px) 0 48px;
  }

  .section {
    padding: 48px 0;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arch-layer {
    flex-direction: column;
  }

  .arch-layer-label {
    width: 100%;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth page transitions */
.page-transition {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== GITHUB BADGES ===== */
.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge.green { background: #2d9369; color: white; }
.badge.blue { background: #2173b8; color: white; }

/* ===== PROVIDER COMPARISON PAGE STYLES ===== */
.provider-page-hero {
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1e293b 100%);
  color: var(--white);
  text-align: center;
}

.provider-page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.provider-page-hero p {
  color: var(--gray-300);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.provider-detail {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}

.provider-detail h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.provider-detail h3 .badge {
  font-size: 0.7rem;
  padding: 2px 8px;
}

.provider-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.provider-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
}

.provider-detail-item .icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.provider-detail-item strong {
  color: var(--gray-900);
}

.provider-detail-item span {
  color: var(--gray-500);
}

/* Use case cards */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.use-case-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 20px;
}

.use-case-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.use-case-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Recommendation box */
.rec-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 32px;
  margin-top: 40px;
}

.rec-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.rec-box p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== VANTAGGI PAGE ===== */
.vantaggi-hero {
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
  color: var(--white);
  text-align: center;
}

.vantaggi-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.vantaggi-hero p {
  color: var(--gray-300);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.vs-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
  margin: 40px 0;
}

.vs-divider {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.vs-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
}

.vs-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  text-align: center;
}

.vs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vs-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.vs-list li .icon-red { color: var(--red); }
.vs-list li .icon-green { color: var(--green); }

.vs-card.highlight {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(59, 130, 246, 0.01));
}

@media (max-width: 768px) {
  .vs-comparison {
    grid-template-columns: 1fr;
  }
  .vs-divider {
    margin: 0 auto;
  }
}

/* Numbered list for advantages */
.numbered-list {
  list-style: none;
  counter-reset: numbered;
}

.numbered-list li {
  counter-increment: numbered;
  padding: 16px 0 16px 56px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}

.numbered-list li:last-child {
  border-bottom: none;
}

.numbered-list li::before {
  content: counter(numbered);
  position: absolute;
  left: 0;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.numbered-list li strong {
  display: block;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.numbered-list li span {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* Feature highlight box */
.highlight-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
}

.highlight-box.warning {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.02));
  border-color: rgba(239, 68, 68, 0.2);
}
