

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

:root {
  --c-bg:     #eef2f7;
  --c-fg:     #0c1b2e;
  --c-muted:  #5e7a96;
  --c-accent: #1558c9;
  --c-dark:   #081422;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 5rem;

  --radius-sm: 3px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
}

html {
  background-color: var(--c-bg);
}

body {
  font-family: var(--font-body);
  color: var(--c-fg);
  background-color: var(--c-bg);
  line-height: 1.6;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
}

p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
}

a {
  color: var(--c-accent);
  text-decoration: none;
}

a:visited {
  color: var(--c-accent);
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--c-bg);
  border-bottom: 1px solid #d4dce9;
  padding: var(--space-3) var(--space-4);
}

.header-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-logo {
  width: 40px;
  height: 40px;
  display: block;
  flex-shrink: 0;
}

.header-brand {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--c-fg);
}

section {
  padding: var(--space-6) var(--space-4);
}

section.light {
  background-color: var(--c-bg);
}

section.dark {
  background-color: var(--c-dark);
  color: #f0f4f9;
}

section.dark h2,
section.dark h3 {
  color: #f0f4f9;
}

section.accent {
  background-color: var(--c-accent);
  color: #f0f4f9;
}

section.accent h2,
section.accent h3 {
  color: #f0f4f9;
}

.section-inner {
  max-width: 1200px;
  margin-inline: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: var(--space-4);
}

.section-heading h2 {
  margin-bottom: var(--space-2);
}

.section-heading p {
  color: var(--c-muted);
  margin-inline: auto;
  max-width: 600px;
}

section.dark .section-heading p {
  color: #a8c5de;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.hero-text h1 {
  margin-bottom: var(--space-3);
  color: #f0f4f9;
}

.hero-text p {
  margin-bottom: var(--space-4);
  color: #c8d9eb;
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  background-color: var(--c-accent);
  color: white;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-md);
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.hero-image {
  width: 100%;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: block;
  overflow: hidden;
}
.hero-image img { width:100%; height:100%; object-fit:cover; display:block; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.card {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background-color: #0f2847;
  color: #f0f4f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card h3 {
  margin-bottom: var(--space-2);
}

.card p {
  color: var(--c-muted);
  margin-bottom: var(--space-2);
}

.card.dark p {
  color: #a8c5de;
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--c-accent);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
  display: block;
}

.card.dark .card-icon {
  background-color: #1558c9;
}

.product-card {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.product-image {
  width: 100%;
  height: 220px;
  background-color: #f5f8fc;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  display: block;
  overflow: hidden;
}
.product-image img { width:100%; height:100%; object-fit:cover; display:block; }

.product-name {
  font-weight: 700;
  margin-bottom: var(--space-2);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.product-price {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: var(--space-3);
}

.product-cta {
  display: inline-block;
  background-color: var(--c-accent);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: clamp(0.95rem, 2vw, 1rem);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.step-item {
  text-align: center;
  color: #f0f4f9;
}

.step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: var(--c-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: var(--space-3);
}

.step-item h3 {
  margin-bottom: var(--space-2);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.split-text ul {
  list-style: none;
  margin-top: var(--space-3);
}

.split-text li {
  margin-bottom: var(--space-3);
  padding-left: var(--space-3);
  position: relative;
}

.split-text li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: 700;
}

.split-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: #f5f8fc;
  border-radius: var(--radius-lg);
  display: block;
  overflow: hidden;
}
.split-image img { width:100%; height:100%; object-fit:cover; display:block; }

section.dark .split-image {
  background-color: rgba(255, 255, 255, 0.1);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
  text-align: center;
}

.metric-item {
  color: #f0f4f9;
}

.metric-value {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.metric-label {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #a8c5de;
}

.testimonial-card {
  padding: var(--space-4);
  background-color: #0f2847;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #f0f4f9;
}

.testimonial-text {
  margin-bottom: var(--space-3);
  font-style: italic;
  color: #e0eef9;
}

.testimonial-author {
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.testimonial-role {
  color: #a8c5de;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.faq-item {
  margin-bottom: var(--space-3);
  border-bottom: 1px solid #d4dce9;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: var(--space-3);
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f8fc;
  border-radius: var(--radius-md);
}

.faq-toggle {
  display: inline-block;
  width: 20px;
  height: 20px;
  color: var(--c-accent);
  font-weight: 700;
  text-align: center;
  line-height: 20px;
}

.faq-answer {
  display: none;
  padding: var(--space-3);
  color: var(--c-muted);
}

.faq-answer.open {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-4);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 700;
  margin-bottom: var(--space-1);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.form-group input,
.form-group textarea {
  padding: var(--space-2);
  border: 1px solid #d4dce9;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-fg);
  background-color: white;
}

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

.form-group button {
  background-color: var(--c-accent);
  color: white;
  padding: var(--space-3);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  cursor: pointer;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-block h3 {
  margin-bottom: var(--space-2);
}

.contact-block p {
  color: var(--c-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #f0f4f9;
  border-top: 1px solid #d4dce9;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
  padding: var(--space-4);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.cookie-text h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-1);
}

.cookie-text p {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--c-accent);
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  padding: var(--space-2) var(--space-3);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
}

.cookie-btn-primary {
  background-color: var(--c-accent);
  color: white;
}

.cookie-btn-primary:hover {
  background-color: #0f47a1;
}

.cookie-btn-secondary {
  background-color: transparent;
  color: var(--c-fg);
  border: 1px solid #d4dce9;
}

.cookie-btn-secondary:hover {
  background-color: #e5eaf2;
}

.cookie-customize-panel {
  display: none;
  border-top: 1px solid #d4dce9;
  padding-top: var(--space-4);
  margin-top: var(--space-4);
}

.cookie-customize-panel.show {
  display: block;
}

.cookie-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.cookie-category {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}

.cookie-category input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
}

.cookie-category label {
  cursor: pointer;
  font-size: 0.95rem;
}

.cookie-category-name {
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.cookie-category-desc {
  font-size: 0.85rem;
  color: var(--c-muted);
}

@media (max-width: 640px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .cookie-categories {
    grid-template-columns: 1fr;
  }
}

footer {
  background-color: var(--c-dark);
  color: #f0f4f9;
  padding: var(--space-6) var(--space-4) var(--space-4);
  margin-top: auto;
  border-top: 1px solid #1a2d48;
}

.footer-inner {
  max-width: 1200px;
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.footer-col h3 {
  margin-bottom: var(--space-2);
}

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

.footer-col ul li {
  margin-bottom: var(--space-2);
}

.footer-col a {
  color: #a8c5de;
}

.footer-col a:hover {
  color: #e0eef9;
}

.footer-copyright {
  text-align: center;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7a93b0;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.case-study-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.case-study-text h3 {
  margin-bottom: var(--space-2);
}

.case-study-text p {
  margin-bottom: var(--space-3);
}

.case-study-image {
  width: 100%;
  height: 100%;
  min-height: 350px;
  background-color: #f5f8fc;
  border-radius: var(--radius-lg);
  display: block;
  overflow: hidden;
}
.case-study-image img { width:100%; height:100%; object-fit:cover; display:block; }

@media (max-width: 1024px) {
  .hero,
  .split,
  .contact-grid,
  .case-study-content {
    grid-template-columns: 1fr;
  }

  .hero-image,
  .split-image,
  .case-study-image {
    height: 300px;
  }

  section {
    padding: var(--space-4) var(--space-3);
  }

  header {
    padding: var(--space-2) var(--space-3);
  }
}

@media (max-width: 640px) {
  .grid-3,
  .grid-2,
  .grid-6,
  .steps,
  .metrics-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    gap: var(--space-2);
  }

  .section-heading h2 {
    margin-bottom: var(--space-1);
  }

  .hero-image,
  .split-image,
  .case-study-image {
    height: 240px;
  }
}

.hero-image img,
.product-image img,
.split-image img,
.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image img,
.product-image img,
.split-image img,
.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
