/* =============================================================
   CSS RESET & NORMALIZE
   ============================================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background: #15202B;
  color: #F1FAFD;
}
ol, ul {
  list-style: none;
}
a {
  background: none;
  text-decoration: none;
  color: inherit;
}
img, svg {
  max-width: 100%;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
}

/* =============================================================
   BRAND FONTS
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --primary: #225577;
  --primary-dark: #183651;
  --secondary: #5AA1C2;
  --accent: #F1FAFD;
  --background: #15202B;
  --background-light: #202C37;
  --surface: #1C2732;
  --metal: #9AA8B8;
  --text-main: #F1FAFD;
  --text-muted: #9AA8B8;
  --shadow: 0 2px 16px 0 rgba(22,34,42,0.25);
  --border-radius: 8px;
  --transition: all 0.23s cubic-bezier(.43,.7,.11,1);
  --industrial-font: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --body-font: 'Roboto', Arial, sans-serif;
}

body {
  background: var(--background);
  color: var(--text-main);
  font-family: var(--body-font);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--industrial-font);
  margin-bottom: 12px;
  color: var(--text-main);
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  line-height: 1.14;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

p, ul, ol, li, strong, span, label {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--text-main);
}
strong {
  color: var(--secondary);
  font-weight: 500;
}

/* =============================================================
   LAYOUT & SECTIONS
   ============================================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  background: var(--background-light);
  border-radius: var(--border-radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.features, .blog-overview, .pricing, .services-preview,
.testimonials, .faq, .team, .brand-promise, .process,
.comparision, .client-types, .contact-form, .confirmation, .legal {
  margin-bottom: 60px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid rgba(90, 161, 194, 0.08);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.card:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(34,85,119,0.15);
  border-color: var(--secondary);
  transform: translateY(-6px) scale(1.015);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--accent);
  color: #243b4d;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 16px 0 rgba(22,34,42,0.10);
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 360px;
  border-left: 5px solid var(--secondary);
}
.testimonial-card strong, .testimonial-card .rating {
  color: #225577;
}
.testimonial-list, .testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== SPACING ==== */
.features ul,
.team ul,
.brand-promise ul,
.faq ul,
.client-types ul,
.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 0;
  margin-bottom: 12px;
}
.features ul li, .service-list li,
.team ul li, .brand-promise ul li, .faq ul li,
.client-types ul li {
  display: flex;
  align-items: center;
  gap: 18px;
}
.features ul li img,
.service-list li img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.4) brightness(1.1);
}

.service-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.service-card {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 18px;
  min-width: 210px;
  flex: 1 0 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(90, 161, 194, 0.08);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.service-card img {
  width: 32px;
  height: 32px;
}

.client-logos {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0.72;
}

.success-stories ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: disc inside;
  margin-left: 12px;
}

/* =============================================================
   NAVIGATION & HEADER
   ============================================================= */
header {
  background: var(--primary-dark);
  box-shadow: 0 2px 7px 0 rgba(22,34,42,0.07);
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 16px;
}
.logo-link img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 24px;
}
.main-nav a {
  color: var(--text-main);
  font-family: var(--industrial-font);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0.87;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-bottom var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
.cta-button {
  display: inline-block;
  background: var(--secondary);
  color: #15202B;
  font-family: var(--industrial-font);
  font-weight: 700;
  border: none;
  border-radius: var(--border-radius);
  padding: 12px 24px;
  margin-left: 18px;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(90,161,194,0.11);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 26px 0 rgba(34,85,119,0.22);
  transform: translateY(-2px) scale(1.03);
}

/* =============================================================
   MOBILE MENU
   ============================================================= */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
    background: none;
    font-size: 2.2rem;
    color: var(--secondary);
    border: none;
    margin-left: auto;
    cursor: pointer;
    padding: 4px 12px;
    z-index: 120;
    transition: color var(--transition), background var(--transition);
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: var(--surface);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 95vw;
    max-width: 400px;
    z-index: 1002;
    padding: 34px 26px 26px 30px;
    box-shadow: 4px 0 26px 0 rgba(22,34,42,0.27);
    transform: translateX(-105%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.43,0.7,0.11,1), opacity 0.27s cubic-bezier(0.43,0.7,0.11,1);
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu-close {
    background: none;
    font-size: 2rem;
    color: var(--secondary);
    border: none;
    margin-bottom: 36px;
    margin-left: auto;
    cursor: pointer;
    transition: color var(--transition);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .mobile-nav a {
    font-family: var(--industrial-font);
    font-size: 1.12rem;
    font-weight: 600;
    padding: 12px 0 5px 3px;
    color: var(--text-main);
    border-left: 4px solid transparent;
    transition: color var(--transition), border-color var(--transition);
    border-radius: 0 8px 8px 0;
  }
  .mobile-nav a:active,
  .mobile-nav a:hover {
    color: var(--secondary);
    border-left: 4px solid var(--secondary);
    background: rgba(90,161,194,0.07);
  }
}
.mobile-menu-overlay {
  display: none;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open ~ .mobile-menu-overlay {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,32,43,0.62);
  z-index: 1000;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s cubic-bezier(0.43,0.7,0.11,1);
}

/* =============================================================
   HERO / CTA / HEADINGS
   ============================================================= */
.hero {
  background: linear-gradient(132deg, rgba(34,85,119,0.92) 68%, rgba(26,39,50,0.98) 100%);
  box-shadow: 0 8px 40px 0 rgba(34,85,119,0.10);
  margin-bottom: 60px;
  padding: 64px 0 48px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
  gap: 20px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.17rem;
  color: #E5ECEF;
  margin-bottom: 20px;
  margin-top: 0;
}
.cta {
  padding: 32px 0 40px;
  background: var(--primary-dark);
  border-top: 2px solid rgba(90,161,194,0.13);
}
.cta h2 {
  color: var(--accent);
  margin-bottom: 4px;
}
.cta p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* =============================================================
   TABLES (for pricing & comparison)
   ============================================================= */
.pricing-table, .comparison-chart {
  width: 100%;
  margin-bottom: 24px;
  background: var(--surface);
  color: var(--text-main);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow-x: auto;
  font-size: 1rem;
}
.pricing-table th, .comparison-chart th {
  background: var(--primary-dark);
  color: var(--secondary);
  font-family: var(--industrial-font);
  font-weight: 700;
  padding: 14px 10px;
  text-align: left;
  border-bottom: 2px solid var(--secondary);
}
.pricing-table td, .comparison-chart td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(90,161,194,0.06);
}
.pricing-table tr:last-child td, .comparison-chart tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td, .comparison-chart th, .comparison-chart td {
    padding: 8px 5px;
    font-size: 0.99rem;
  }
}

/* =============================================================
   NEWSLETTER & BLOG DETAILS
   ============================================================= */
.newsletter-signup {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
}
.featured-posts article {
  background: var(--background-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  flex: 1 1 240px;
  min-width: 200px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.featured-posts article:hover {
  box-shadow: 0 8px 28px 0 rgba(34,85,119,0.20);
  transform: translateY(-4px) scale(1.01);
}
.featured-posts h2 {
  font-size: 1.13rem;
}
.featured-posts a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition);
  margin-top: 6px;
  display: inline-block;
}
.featured-posts a:hover {
  color: var(--primary);
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: var(--primary-dark);
  color: #C1D1DD;
  padding: 0 0 12px 0;
  border-top: 2px solid rgba(90,161,194,0.08);
}
.footer-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 18px 8px 18px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--industrial-font);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.footer-nav a {
  color: #C1D1DD;
  opacity: 0.82;
  transition: color var(--transition), opacity var(--transition);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.footer-nav a:hover {
  color: var(--secondary);
  opacity: 1;
  border-bottom: 1px solid var(--secondary);
}
.contact-brief {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.contact-brief a {
  color: var(--secondary);
  text-decoration: underline;
}
.social-icons {
  display: flex;
  gap: 18px;
}
.social-icons img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%) brightness(1.25) contrast(1.2);
  transition: filter var(--transition);
  opacity: 0.66;
}
.social-icons img:hover {
  filter: grayscale(0%) brightness(1.1) contrast(1.4);
  opacity: 1;
}
.copyright {
  margin-top: 8px;
  color: #808A94;
  font-size: 0.93rem;
}

/* =============================================================
   RESPONSIVE DESIGN (Mobile-first)
   ============================================================= */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
    max-width: 97vw;
  }
  .header-container {
    flex-direction: row;
    gap: 0;
    padding: 11px 8px;
  }
  .hero {
    padding: 36px 0 22px 0;
  }
  .hero .content-wrapper h1 {
    font-size: 1.65rem;
  }
  .service-card-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-list, .testimonial-carousel {
    flex-direction: column;
    gap: 16px;
  }
  .featured-posts {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .cta {
    padding: 18px 0 22px;
  }
  .footer-nav {
    font-size: 0.97rem;
    gap: 12px;
  }
  .footer-wrapper {
    gap: 14px;
    padding: 17px 7px 7px 7px;
  }
}

/* =============================================================
   MICRO-INTERACTIONS & TRANSITIONS
   ============================================================= */
a, button, .cta-button, .service-card, .card, .testimonial-card, .mobile-menu, .mobile-menu-close, .mobile-menu-toggle {
  transition: var(--transition);
}

/* =============================================================
   SPECIAL CLASSES & INDUSTRIAL EFFECTS
   ============================================================= */
.card, .service-card, .footer-nav a, .mobile-nav a {
  font-family: var(--industrial-font);
  letter-spacing: 0.015em;
}
.card::before, .service-card::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  pointer-events: none;
  background: linear-gradient(120deg, rgba(34,85,119,0.04) 0%, rgba(90,161,194,0.04) 100%);
  z-index: 0;
}

/* Shadows & metallic accent borders */
.card, .service-card, .testimonial-card {
  border-left: 3px solid var(--metal);
}

/* Subtle metallic horizontal rule for accent */
hr {
  border: none;
  border-top: 2px solid var(--metal);
  opacity: 0.32;
  margin: 18px 0 16px;
  width: 100%;
}
/* Table for pricing gets metallic border */
.pricing-table, .comparison-chart {
  border: 1.5px solid var(--metal);
}

/* =============================================================
   BUTTONS & INTERACTIVE ELEMENTS
   ============================================================= */
button, .cta-button {
  cursor: pointer;
  font-family: var(--industrial-font);
  border-radius: var(--border-radius);
}
button:focus, .cta-button:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* =============================================================
   RATING (testimonials)
   ============================================================= */
.rating {
  font-size: 1.25em;
  color: #FFB12C;
  margin: 0 0 4px 0;
  letter-spacing: 0.11em;
}

/* =============================================================
   SPECIAL: MAP PLACEHOLDER (Contact page)
   ============================================================= */
.map-placeholder {
  background: var(--surface);
  color: var(--metal);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 16px 12px;
  margin: 16px 0 0 0;
  font-style: italic;
  font-size: 1.02rem;
  text-align: center;
}

/* =============================================================
   COOKIE CONSENT BANNER & MODAL
   ============================================================= */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1300;
  background: var(--background-light);
  color: var(--text-main);
  border-top: 4px solid var(--secondary);
  box-shadow: 0 -8px 32px 0 rgba(34,85,119,0.11);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 18px 20px 24px;
  flex-wrap: wrap;
  animation: cookieBannerEnter 0.42s cubic-bezier(0.43,0.7,0.11,1) 1;
}
@keyframes cookieBannerEnter {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent p {
  font-size: 1rem;
  color: #F1FAFD;
  flex: 1 1 210px;
  margin-bottom: 0;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-consent button, .cookie-actions button {
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: var(--border-radius);
  border: none;
  font-family: var(--industrial-font);
  font-weight: 600;
  transition: var(--transition);
  margin-top: 7px;
}
.accept-cookies {
  background: var(--secondary);
  color: #15202B;
}
.accept-cookies:hover { background: var(--primary); color: #fff; }
.reject-cookies {
  background: #516270;
  color: var(--accent);
}
.reject-cookies:hover { background: #37444d; }
.setting-cookies {
  background: none;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.setting-cookies:hover { background: var(--secondary); color: #15202B; }

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
}
.cookie-modal-open .cookie-modal-overlay {
  display: block;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(21,32,43,0.74);
  z-index: 1350;
}
.cookie-modal {
  display: none;
}
.cookie-modal-open .cookie-modal {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1400;
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: 0 12px 44px 0 rgba(34,85,119,0.28);
  padding: 32px 24px 28px 24px;
  min-width: 340px;
  max-width: 96vw;
  animation: cookieModalIn 0.31s cubic-bezier(0.43,0.7,0.11,1) 1;
}
@keyframes cookieModalIn {
  from { transform: translate(-50%, -45%) scale(0.91); opacity:0; }
  to { transform: translate(-50%, -50%) scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.32rem;
  color: var(--secondary);
  margin-bottom: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category label {
  color: #F1FAFD;
  font-size: 1rem;
  margin-right: 10px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 20px; height: 20px;
  margin-right: 6px;
}
.cookie-modal .cookie-category[data-essential] label {
  color: #aaa;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.cookie-modal-close {
  background: none;
  color: var(--secondary);
  font-size: 1.6rem;
  border: none;
  position: absolute;
  right: 24px; top: 18px;
  cursor: pointer;
  transition: color var(--transition);
}
.cookie-modal-close:hover {
  color: #fff;
}
@media (max-width: 620px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 14px 7vw 18px 7vw;
  }
}

/* =============================================================
   UTILITY CLASSES
   ============================================================= */
.m-b-8  { margin-bottom: 8px; }
.m-b-16 { margin-bottom: 16px; }
.m-b-24 { margin-bottom: 24px; }
.m-b-32 { margin-bottom: 32px; }
.m-t-32 { margin-top: 32px; }
.tac    { text-align: center; }
.flex-center   { display: flex; align-items: center; justify-content: center; }
.flex-v-center { display: flex; align-items: center; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.hidden { display: none !important; }

/* Fix for input focus */
input[type="text"], input[type="email"], textarea {
  background: var(--background-light);
  color: var(--text-main);
  border: 1.2px solid var(--metal);
  border-radius: var(--border-radius);
  padding: 11px 13px;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--body-font);
  transition: border var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus {
  border: 1.2px solid var(--secondary);
  box-shadow: 0 0 0 2px rgba(90,161,194,0.13);
}

/* Form labels */
label {
  display: block;
  color: var(--metal);
  font-size: 1rem;
  font-family: var(--body-font);
  margin-bottom: 6px;
}

/* =============================================================
   PRINT & ACCESSIBILITY
   ============================================================= */
@media print {
  .mobile-menu, .mobile-menu-overlay, .cookie-consent, .cookie-modal, .cookie-modal-overlay, .mobile-menu-toggle { display: none !important; }
  header, footer { box-shadow: none !important; border: none !important; }
}

/* =============================================================
   END OF STYLE.CSS - LAGO LUCIDO (INDUSTRIAL MODERN)
   ============================================================= */