/* ==========================================================================
   AppProfileSafe – Global Stylesheet
   https://www.appprofilesafe.com/file/1769676267/426/style.css
   ========================================================================== */

/* --- Local Fonts: DM Sans --- */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://www.appprofilesafe.com/file/1769676267/449/dm-sans-v17-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('https://www.appprofilesafe.com/file/1769676267/454/dm-sans-v17-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('https://www.appprofilesafe.com/file/1769676267/450/dm-sans-v17-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('https://www.appprofilesafe.com/file/1769676267/451/dm-sans-v17-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://www.appprofilesafe.com/file/1769676267/452/dm-sans-v17-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('https://www.appprofilesafe.com/file/1769676267/453/dm-sans-v17-latin-800.woff2') format('woff2');
}

/* --- CSS Variables --- */
:root {
  /* Colors */
  --navy:        #0f1a2e;
  --navy-light:  #1a2b45;
  --navy-mid:    #243754;
  --slate:       #64748b;
  --slate-light: #94a3b8;
  --cloud:       #f1f5f9;
  --cloud-dark:  #e2e8f0;
  --white:       #ffffff;
  --cyan:        #0ea5e9;
  --cyan-dark:   #0284c7;
  --cyan-light:  #7dd3fc;
  --cyan-glow:   rgba(14, 165, 233, 0.15);
  --green:       #10b981;
  --green-light: #d1fae5;
  --yellow:      #f59e0b;
  --yellow-light:#fef3c7;
  --red:         #ef4444;
  --red-light:   #fee2e2;
  --orange:      #f97316;

  /* Typography */
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'Courier New', Courier, monospace;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width:  1140px;
  --max-narrow: 720px;

  /* Borders & Shadows */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg:  0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.3s;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--cyan-dark);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}

a:hover {
  color: var(--cyan);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
  color: var(--slate);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--slate);
}

.overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--space-sm);
}

.highlight {
  color: var(--cyan-dark);
  font-weight: 600;
}

code, .code {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--max-narrow);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background: var(--cloud);
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p,
.section--dark .lead {
  color: var(--slate-light);
}

.section--dark .overline {
  color: var(--cyan-light);
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-3xl);
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: var(--space-xl);
}

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

.grid--2-1 { grid-template-columns: 2fr 1fr; }
.grid--1-2 { grid-template-columns: 1fr 2fr; }
.grid--5-7 { grid-template-columns: 5fr 7fr; }
.grid--7-5 { grid-template-columns: 7fr 5fr; }

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4,
  .grid--2-1, .grid--1-2, .grid--5-7, .grid--7-5 {
    grid-template-columns: 1fr;
  }
}

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cloud-dark);
  transition: box-shadow var(--duration) var(--ease-out);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 64px;
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--duration) var(--ease-out);
  position: relative;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--cyan);
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
}

.nav__cta {
  padding: 8px 20px !important;
  background: var(--cyan);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background var(--duration) var(--ease-out), transform var(--duration) var(--ease-out) !important;
}

.nav__cta:hover {
  background: var(--cyan-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform var(--duration) var(--ease-out), opacity var(--duration);
}

@media (max-width: 900px) {
  .nav__toggle { display: block; }

  .nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--cloud-dark);
    box-shadow: var(--shadow-md);
    gap: var(--space-md);
  }

  .nav__links.open { display: flex; }
}

/* --- Hero --- */
.hero {
  padding: calc(64px + var(--space-4xl)) 0 var(--space-4xl);
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 55%, var(--navy-mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.hero p {
  color: var(--slate-light);
  font-size: 1.15rem;
  max-width: 520px;
}

.hero__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border: 1px solid rgba(255,255,255,0.1);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  background: var(--cyan);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--cyan-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--secondary:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--cyan-dark);
  border: 1.5px solid var(--cyan);
}

.btn--outline:hover {
  background: var(--cyan);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border: 1px solid var(--cloud-dark);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card--flat {
  border: none;
  background: var(--cloud);
}

.card--flat:hover {
  background: var(--cloud-dark);
}

.card--dark {
  background: var(--navy-light);
  border-color: var(--navy-mid);
}

.card--dark:hover {
  background: var(--navy-mid);
}

.card--bordered-cyan {
  border-left: 3px solid var(--cyan);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--cyan-glow);
  color: var(--cyan);
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.card__icon--green { background: var(--green-light); color: var(--green); }
.card__icon--yellow { background: var(--yellow-light); color: var(--yellow); }
.card__icon--red { background: var(--red-light); color: var(--red); }

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

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #475569;
}

/* --- Feature Blocks (alternating image+text) --- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.feature-block:nth-child(even) .feature-block__image {
  order: 2;
}

.feature-block__image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cloud-dark);
}

.feature-block__content .overline {
  margin-bottom: var(--space-sm);
}

.feature-block__content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.feature-block__content p {
  margin-bottom: var(--space-md);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  color: var(--slate);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .feature-block:nth-child(even) .feature-block__image {
    order: 0;
  }
}

/* --- Tables --- */
.table-wrap {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--cloud-dark);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

thead {
  background: var(--navy);
  color: var(--white);
}

th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--cloud-dark);
  color: var(--slate);
}

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

tbody tr:nth-child(even) {
  background: var(--cloud);
}

/* --- Comparison Table (Home) --- */
.comparison-table td {
  color: var(--cloud);
  border-bottom-color: var(--navy-mid);
}
.comparison-table td:first-child {
  font-weight: 600;
  color: #e2e8f0;
}
.comparison-table .check { color: var(--green); font-weight: 700; }
.comparison-table .cross { color: var(--red); font-weight: 700; }
.comparison-table .partial { color: var(--yellow); font-weight: 700; }
.comparison-table tbody tr:nth-child(even) {
  background: rgba(36, 55, 84, 0.5);
}

/* --- Pricing --- */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--cloud-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: transform var(--duration) var(--ease-out), border-color var(--duration);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--cyan);
  position: relative;
}

.pricing-card--featured::before {
  content: 'Most common';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-card__tier {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.pricing-card__range {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: var(--space-lg);
}

.pricing-card__price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.pricing-card__unit {
  font-size: 0.9rem;
  color: var(--slate);
  margin-top: var(--space-xs);
}

/* Interactive Price Calculator */
.calculator {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  color: var(--white);
  margin: var(--space-3xl) 0;
}

.calculator__input-group {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.calculator__label {
  font-size: 1.1rem;
  font-weight: 500;
}

.calculator__slider {
  flex: 1;
  min-width: 200px;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--navy-mid);
  outline: none;
}

.calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cyan);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
  transition: transform 0.15s;
}

.calculator__slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calculator__slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cyan);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

.calculator__number {
  width: 100px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy-light);
  border: 1.5px solid var(--navy-mid);
  border-radius: var(--radius-sm);
  text-align: center;
  outline: none;
  transition: border-color var(--duration);
}

.calculator__number:focus {
  border-color: var(--cyan);
}

.calculator__result {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg);
}

.calculator__result-item {
  background: var(--navy-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.calculator__result-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan-light);
  font-family: var(--font-mono);
}

.calculator__result-label {
  font-size: 0.85rem;
  color: var(--slate-light);
  margin-top: var(--space-xs);
}

.calculator__note {
  font-size: 0.85rem;
  color: var(--slate-light);
  margin-top: var(--space-lg);
  text-align: center;
}

/* --- Stat Highlights --- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cyan);
  font-family: var(--font-display);
  line-height: 1.1;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--slate);
  margin-top: var(--space-xs);
}

.section--dark .stat__number {
  color: var(--cyan-light);
}

.section--dark .stat__label {
  color: var(--slate-light);
}

@media (max-width: 600px) {
  .stats {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* --- Terminal / CLI Block --- */
.terminal {
  background: #0d1117;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.8;
  color: #c9d1d9;
  overflow-x: auto;
  border: 1px solid #30363d;
  box-shadow: var(--shadow-lg);
}

.terminal__header {
  display: flex;
  gap: 6px;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid #21262d;
}

.terminal__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal__dot--red { background: #ff5f57; }
.terminal__dot--yellow { background: #febc2e; }
.terminal__dot--green { background: #28c840; }

.terminal .prompt { color: var(--cyan); }
.terminal .flag { color: #d2a8ff; }
.terminal .string { color: #a5d6ff; }
.terminal .success { color: #3fb950; }
.terminal .comment { color: #8b949e; }

/* --- FAQ / Accordion --- */
.faq-item {
  border: 1px solid var(--cloud-dark);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--duration);
}

.faq-item__question:hover {
  background: var(--cloud);
}

.faq-item__icon {
  font-size: 1.2rem;
  color: var(--slate);
  transition: transform var(--duration) var(--ease-out);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-item__answer {
  display: block;
}

/* --- Tier Badges --- */
.badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge--cyan   { background: var(--cyan-glow); color: var(--cyan-dark); }
.badge--green  { background: var(--green-light); color: var(--green); }
.badge--yellow { background: var(--yellow-light); color: var(--yellow); }
.badge--red    { background: var(--red-light); color: var(--red); }

/* --- Partner Tiers --- */
.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 2px solid var(--cloud-dark);
  text-align: center;
  transition: transform var(--duration) var(--ease-out), border-color var(--duration);
}

.tier-card:hover {
  transform: translateY(-4px);
}

.tier-card--silver { border-color: #94a3b8; }
.tier-card--gold   { border-color: #f59e0b; }
.tier-card--strat  { border-color: var(--cyan); }

.tier-card__discount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--cloud-dark);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--duration);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}

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

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: var(--slate-light);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand p {
  color: var(--slate-light);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer__brand img {
  height: 32px;
  margin-bottom: var(--space-md);
}

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: var(--slate-light);
  font-size: 0.9rem;
  transition: color var(--duration);
}

.footer__links a:hover {
  color: var(--cyan-light);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--navy-mid);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* --- SVG Icons (inline) --- */
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon--lg {
  width: 32px;
  height: 32px;
}

/* --- Misc Utilities --- */
.mt-0  { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-0  { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.js-ready .animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- Cookie Banner (minimal) --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  flex-wrap: wrap;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  color: var(--slate-light);
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
}

/* --- Print --- */
@media print {
  .nav, .footer, .cookie-banner { display: none; }
  body { font-size: 12pt; color: #000; }
  .section { padding: 1rem 0; }
  .hero { background: #fff; color: #000; padding-top: 1rem; }
  .hero h1, .hero p { color: #000; }
}
