/* ========== CSS RESET & NORMALIZE ========== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F7F7F9;
  color: #1C222B;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #003366;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; letter-spacing: -2px;  }
h2 { font-size: 2rem;  }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
a {
  color: #1E88E5;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #003366;
  text-decoration: underline;
}
strong { font-weight: 700; }
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* ========== BRAND COLORS ========== */
:root {
  --primary: #003366;
  --secondary: #1E88E5;
  --accent: #F7F7F9;
  --danger: #B00020;
  --shadow: rgba(30, 136, 229, 0.15);
  --highlight1: #ffcd38;
  --highlight2: #f73d71;
  --highlight3: #38ffce;
  --gray-light: #ECEFF1;
  --gray-mid: #B0BEC5;
}

/* ========== GLOBAL FLEX PATTERNS ========== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  width: 100vw;
  background: #fff;
  box-shadow: 0 4px 16px rgba(30, 136, 229, 0.07);
  z-index: 60;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 0 18px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #003366;
  padding: 8px 15px;
  border-radius: 7px;
  transition: background .2s, color .2s;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.main-nav a.cta-primary {
  background: linear-gradient(90deg, var(--highlight1) 40%, var(--highlight2) 100%);
  box-shadow: 0 1px 12px var(--shadow);
  color: #003366;
  font-weight: 800;
  font-size: 1.05rem;
  border:none;
  padding: 10px 24px;
  margin-left: 20px;
  letter-spacing: 1px;
  transition: background .25s, color .2s, box-shadow .25s;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: linear-gradient(90deg, var(--highlight2) 40%, var(--highlight3) 100%);
  color: #fff;
  box-shadow: 0 4px 24px var(--highlight2);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
.main-nav img {
  height: 38px;
  margin-right: 16px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--secondary);
  cursor: pointer;
  margin-left: auto;
  padding: 8px 12px;
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu {
  position: fixed;
  z-index: 100;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(247,247,249,0.96);
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.67,.01,.15,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 0 24px;
  box-shadow: 0 8px 32px rgba(30, 136, 229, 0.12);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  margin-left: auto;
  background: none;
  border: none;
  color: var(--danger);
  cursor: pointer;
  padding: 8px 8px 4px 8px;
  margin-bottom: 16px;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: var(--danger);
  border-radius: 5px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 6px;
  padding: 12px 10px;
  background: none;
  transition: background .18s, color .18s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--secondary);
  color: #fff;
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(120deg, var(--accent) 60%, var(--highlight3) 140%);
  border-bottom: 6px solid var(--secondary);
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  min-height: 270px;
}
.hero .content-wrapper {
  gap: 22px;
  align-items: flex-start;
  max-width: 740px;
}
.hero h1 {
  font-size: 2.4rem;
  background: linear-gradient(90deg, var(--primary) 50%, var(--secondary) 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.hero a.cta-primary {
  margin-top: 10px;
}

/* ========== SECTION HEADINGS ========== */
section h2 {
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  font-family: 'Montserrat',Arial,sans-serif;
  background: linear-gradient(-30deg, var(--primary) 60%, var(--highlight1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== CTA BUTTONS ========== */
.cta-primary,
.cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  margin-top: 16px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(30,136,229,0.12);
  transition: background .27s, color .14s, box-shadow .22s, transform .18s;
  text-align: center;
  letter-spacing: .5px;
}
.cta-primary {
  background: linear-gradient(90deg, var(--highlight2) 60%, var(--secondary) 100%);
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(93deg, var(--secondary) 55%, var(--highlight1) 87%);
  color: var(--primary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px var(--shadow);
}
.cta-secondary {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--secondary);
  color: #fff;
  border: 2px solid var(--primary);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 24px var(--secondary);
}

/* ========== FEATURES ========== */
.features .feature-grid, 
.features .cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 10px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px var(--shadow), 0 1px 2px var(--highlight3);
  padding: 28px 20px 22px 20px;
  width: 250px;
  min-width: 210px;
  position: relative;
  transition: box-shadow .3s, transform .2s;
  margin-bottom: 20px;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 7px;
  filter: grayscale(0.1) drop-shadow(0 1px 0 var(--highlight2));
}
.feature h3 {
  font-size: 1.16rem;
  color: var(--secondary);
  margin-bottom: 2px;
}
.feature p {
  font-size: 1rem;
  margin-bottom: 0;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 12px 48px var(--highlight1), 0 4px 32px var(--secondary);
  transform: translateY(-6px) scale(1.04) rotate(-2deg);
}

/* ========== SERVICES & CARDS ========== */
.services .service-list,
.services .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
}
.service, .plan, .training-program {
  background: linear-gradient(99deg, #fff 80%, var(--highlight3) 160%);
  border-radius: 18px;
  box-shadow: 0 3px 16px var(--gray-light), 0 2px 8px var(--highlight1);
  padding: 24px 18px 20px 18px;
  min-width: 220px;
  max-width: 290px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: box-shadow .22s, transform .2s;
}
.service:hover, .plan:hover, .training-program:hover {
  box-shadow: 0 10px 40px var(--highlight2), 0 2px 12px var(--secondary);
  transform: scale(1.04) rotate(1.6deg);
  z-index: 3;
}
.service h3, .plan h3, .training-program h3 {
  color: var(--secondary);
  font-size: 1.11rem;
  margin-bottom: 0.4em;
}
.service .price, .plan .price {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.22rem;
  margin-top: 10px;
  margin-bottom: 5px;
}
.training-program ul, .service ul {
  margin-bottom: 10px;
}

/* ========== PRICING TABLES ========== */
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}
.plan {
  min-width: 210px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: linear-gradient(97deg, #fff 60%, var(--highlight3) 120%);
}
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 26px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px var(--highlight3), 0 1px 7px var(--gray-mid);
  margin-bottom: 20px;
  padding: 32px 26px 22px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 380px;
  width: 100%;
  min-height: 120px;
  color: #1C222B;
  position: relative;
  transition: box-shadow .23s, transform .22s;
}
.testimonial-card p {
  font-size: 1.14rem;
  color: #003366;
  margin-bottom: 14px;
}
.testimonial-card .client-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 50px var(--secondary);
  border-left: 6px solid var(--highlight2);
  transform: translateY(-5px) scale(1.04) rotate(-0.6deg);
}

/* ======= CLIENT LOGOS ======= */
.client-logos {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 0;
}
.client-logos img {
  height: 44px;
  width: auto;
  filter: grayscale(0.2) drop-shadow(0 2px 2px var(--highlight3));
  opacity: 0.85;
}

/* ========== CONTACT SECTION ========== */
.contact-summary {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px var(--shadow);
  margin-bottom: 60px;
}
.contact-info-summary p a {
  font-weight: 600;
  color: var(--secondary);
}
.contact-details, .contact-form-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px var(--shadow);
  margin-bottom: 44px;
}
.map-embed {
  margin-top: 18px;
  background: var(--highlight3);
  border-radius: 16px;
  padding: 16px 10px 12px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.map-embed img {
  width: 38px;
  height: 38px;
}

/* ========== TEXT & LEGAL SECTIONS ================= */
.text-section {
  margin-bottom: 16px;
}
.legal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 34px var(--shadow);
  margin-bottom: 40px;
  padding: 34px 28px;
}
.legal h2, .legal h3 {
  color: var(--secondary);
}
.legal ul li {
  margin-bottom: 7px;
}
.legal a {
  text-decoration: underline;
}

/* ========== THANK YOU SECTION ========== */
.thankyou {
  background: var(--highlight3);
  border-radius: 14px;
  box-shadow: 0 6px 34px var(--secondary);
  margin-bottom: 60px;
  padding: 60px 24px 60px 24px;
  text-align: center;
}
.thankyou h1 {
  margin-bottom: 22px;
}
.thank-you-message {
  margin-bottom: 24px;
}

/* ========== FOOTER ========== */
footer {
  background: #fff;
  border-top: 5px solid var(--highlight1);
  box-shadow: 0 -3px 12px var(--highlight3);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 38px 20px 24px 20px;
  min-height: 110px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 5px;
  transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--primary);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-brand img {
  height: 32px;
  width: auto;
  filter: grayscale(0.04) drop-shadow(0 1px 0 var(--highlight2));
}
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  opacity: 0.7;
  transition: opacity .16s, filter .16s;
  filter: grayscale(0.15);
}
.footer-social img:hover, .footer-social img:focus {
  opacity: 1;
  filter: drop-shadow(0 2px 8px var(--highlight2)) saturate(2);
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 24px;
  z-index: 150;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 36px var(--highlight2), 0 1px 12px var(--secondary);
  padding: 24px 26px 20px 26px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  font-size: 1.05rem;
  color: #1C222B;
  animation: cookie-slide-up 0.38s cubic-bezier(.67,.01,.15,1);
}
@keyframes cookie-slide-up {
  0% {transform: translateY(65px); opacity: 0;}
  97% {transform: translateY(-4px); opacity: 1;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-left: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 1rem;
  margin: 0 2px;
  cursor: pointer;
  transition: background .20s, color .15s;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: var(--highlight2);
}
.cookie-banner .reject {
  background: #fff;
  color: var(--danger);
  border: 1.5px solid var(--danger);
}
.cookie-banner .reject:hover {
  background: var(--danger);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--accent);
  color: var(--secondary);
}
.cookie-banner .settings:hover {
  background: var(--secondary);
  color: #fff;
}

/* ======= Cookie Modal ======= */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 200;
  background: rgba(30,136,229, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-overlay-fade .25s;
}
@keyframes cookie-overlay-fade { from { opacity: 0;} to {opacity: 1;} }
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px var(--secondary), 0 2px 12px var(--highlight2);
  padding: 38px 34px 28px 34px;
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  animation: cookie-modal-pop .36s cubic-bezier(.67,.01,.15,1);
}
@keyframes cookie-modal-pop {
  from {transform: scale(0.95); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--secondary);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--secondary);
  width: 22px; height: 22px;
  margin-right: 5px;
}
.cookie-category .category-label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}
.cookie-modal .always-on {
  background: var(--gray-light);
  color: var(--primary);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: .95rem;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 7px;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  transition: background .18s;
  cursor: pointer;
}
.cookie-modal .save {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal .save:hover {
  background: var(--primary);
}
.cookie-modal .cancel {
  background: #fff;
  color: var(--danger);
  border: 1.5px solid var(--danger);
}
.cookie-modal .cancel:hover {
  background: var(--danger);
  color: #fff;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--danger);
  cursor: pointer;
  z-index: 2;
}
.cookie-modal .close-modal:hover {
  background: var(--danger);
  color: #fff;
  border-radius: 5px;
}

/* ========== MEDIA QUERIES AND RESPONSIVE LAYOUT ========== */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
  .features .feature-grid, .features .cards-row { flex-wrap: wrap; justify-content: flex-start; }
  .pricing-row { flex-wrap: wrap; }
}
@media (max-width: 992px) {
  .container { max-width: 95vw; padding: 0 12px; }
  header .container { flex-direction: row; }
}
@media (max-width: 900px) {
  .main-nav { gap: 14px; }
  .feature, .service, .plan { min-width: 160px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .container { max-width: 97vw; padding: 0 6px; }
  .content-wrapper { max-width: 99vw; }
  .hero h1 { font-size: 2rem; }
  .hero .content-wrapper { padding: 0; }
  .features .feature-grid, .features .cards-row, .services .service-list, .services .service-grid, .training-program-list, .testimonial-slider, .pricing-row {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature, .service, .plan, .testimonial-card { width: 100%; max-width: unset; min-width: unset; }
  .section, .contact-summary, .legal { padding: 28px 7px; }
  .thankyou { padding: 32px 7px; }
  .footer-brand img { height: 24px; }
  .footer-social img { width: 22px; height: 22px; }
  .map-embed { flex-direction: column; gap: 4px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 10px 16px 10px; left: 2vw; right: 2vw; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.1rem; }
  .cta-primary, .cta-secondary { padding: 10px 12px; font-size: 1rem; }
  .feature, .plan, .service, .testimonial-card, .legal, .thankyou { padding: 14px 6px; }
  .footer-brand span { font-size: 0.88rem; }
  .footer-nav { gap: 10px; }
  .footer-social img { width: 18px; height: 18px; }
  .cookie-modal { padding: 16px 8px 10px 8px; min-width: min(250px, 98vw); }
}

/* ========== TRANSITIONS, FOCUS & MICRO-INTERACTIONS ========== */
button, a, input, select, textarea {
  outline: none;
  transition: box-shadow .14s, border .14s, background .14s, color .14s;
}
button:focus, .cta-primary:focus, .cta-secondary:focus, .mobile-menu-toggle:focus {
  box-shadow: 0 0 0 3px var(--highlight1);
}
input:focus, textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px var(--highlight3);
}

/* ========== CUSTOM SCROLLBARS ========== */
::-webkit-scrollbar {
  width: 9px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: var(--secondary);
  opacity: 0.45;
}
::-webkit-scrollbar-thumb:hover { background: var(--highlight2); }

/* ========== UNIQUE ARTISTIC ACCENTS ========== */
.feature:before, .plan:before, .service:before, .testimonial-card:before {
  content: '';
  position: absolute;
  z-index: 0;
  border-radius: 38% 72% 80% 64%/60% 40% 70% 30%;
  width: 38px; height: 38px;
  left: -22px; top: -22px;
  background: linear-gradient(140deg, var(--highlight1), var(--highlight2) 80%);
  opacity: 0.10;
  pointer-events: none;
}
.feature:after, .plan:after, .service:after, .testimonial-card:after {
  content: '';
  position: absolute;
  z-index: 0;
  border-radius: 78% 40% 70% 99%/100% 30% 20% 80%;
  width: 16px; height: 28px;
  right: -14px; bottom: -10px;
  background: linear-gradient(120deg, var(--highlight3) 40%, var(--secondary));
  opacity: 0.08;
  pointer-events: none;
}

/* ========== TYPOGRAPHY SCALE & HIERARCHY ========== */
.display-48 {
  font-size: 3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: -2.5px;
  color: var(--primary);
  font-weight: 900;
}
.display-32 { font-size: 2rem; }
.display-24 { font-size: 1.5rem; }
.display-18 { font-size: 1.125rem; }
.display-16 { font-size: 1rem; }
.display-14 { font-size: 0.88rem; }

/* ========== MISC FORMS (Contact/Legal) ========== */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1.3px solid var(--gray-mid);
  padding: 10px 14px;
  margin-bottom: 18px;
  width: 100%;
  background: #fff;
  color: var(--primary);
  transition: border .18s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--secondary);
  box-shadow: 0 0 5px var(--highlight2);
}

/* ========== UTILITY CLASSES ========== */
.nowrap { white-space: nowrap; }
.hide { display: none !important; }
.flex-row { display: flex; flex-direction: row; gap: 18px; }
.flex-col { display: flex; flex-direction: column; gap: 16px; }
.align-center { align-items: center; }

/* ========== END OF STYLE.CSS ========== */
