/* ========================================
   DeLauretis Tech - Main Stylesheet
   ======================================== */

/* --- Custom Properties --- */
:root {
  --navy: #1B2A4A;
  --navy-dark: #111C33;
  --navy-light: #243556;
  --teal: #1A8FA3;
  --teal-light: #22B8D0;
  --teal-dark: #147383;
  --silver: #8A9BAE;
  --silver-light: #B8C5D1;
  --light: #F4F6F8;
  --white: #FFFFFF;
  --text: #2C3E50;
  --text-light: #6B7C93;
  --font-main: 'Montserrat', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 20px rgba(27, 42, 74, 0.08);
  --shadow-lg: 0 10px 40px rgba(27, 42, 74, 0.12);
  --shadow-teal: 0 8px 30px rgba(26, 143, 163, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--silver);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--teal);
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  font-weight: 400;
}

.gradient-text {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(27, 42, 74, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: 1px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo span:first-of-type {
  font-weight: 800;
}

.nav-logo span:last-of-type {
  font-weight: 300;
  opacity: 0.9;
}

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

.nav-link {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--teal);
}

.nav-link:hover::after {
  width: 100%;
}

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  background: var(--light);
  border-radius: 8px;
  padding: 4px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  color: var(--navy);
}

.lang-btn.active {
  background: var(--teal);
  color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(17, 28, 51, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-link {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--teal);
}

.mobile-lang-selector {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.mobile-lang-selector .lang-btn {
  font-size: 1rem;
  padding: 8px 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(26, 143, 163, 0.07) 0%, transparent 70%);
  animation: heroOrb1 15s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(138, 155, 174, 0.06) 0%, transparent 70%);
  animation: heroOrb2 18s ease-in-out infinite;
}

@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10%, 5%) scale(1.1); }
  66% { transform: translate(-5%, -10%) scale(0.95); }
}

@keyframes heroOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-10%, -5%) scale(1.05); }
  66% { transform: translate(5%, 10%) scale(0.9); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-logo {
  width: 280px;
  height: auto;
  margin: 0 auto 40px;
  filter: drop-shadow(0 8px 30px rgba(26, 143, 163, 0.15));
  animation: heroLogoFloat 6s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero-title .teal {
  color: var(--teal-light);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(26, 143, 163, 0.3);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26, 143, 163, 0.45);
}

.hero-cta svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(27, 42, 74, 0.2);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--teal);
  border-radius: 3px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* Geometric decorations */
.hero-geo {
  position: absolute;
  border: 1px solid rgba(26, 143, 163, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.hero-geo-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation: geoRotate 25s linear infinite;
}

.hero-geo-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 8%;
  animation: geoRotate 20s linear infinite reverse;
}

.hero-geo-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  border-color: rgba(138, 155, 174, 0.08);
  animation: geoRotate 30s linear infinite;
}

@keyframes geoRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  border: 1px solid rgba(27, 42, 74, 0.06);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26, 143, 163, 0.1), rgba(34, 184, 208, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  box-shadow: var(--shadow-teal);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--teal);
}

.value-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.value-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-card h4 svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* Counters */
.counters {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  padding: 80px 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.counter-item {
  color: var(--white);
}

.counter-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal-light);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.counter-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  background: var(--light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.contact-info > p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26, 143, 163, 0.1), rgba(34, 184, 208, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.contact-detail-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-detail-text p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(27, 42, 74, 0.08);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--light);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26, 143, 163, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--silver);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  box-shadow: var(--shadow-teal);
  transform: translateY(-2px);
}

.btn-submit svg {
  width: 20px;
  height: 20px;
}

.form-success {
  background: rgba(26, 143, 163, 0.1);
  color: var(--teal-dark);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
  display: none;
}

.form-success.visible {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-logo img {
  height: 32px;
}

.footer-logo span:first-of-type {
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-logo span:last-of-type {
  font-weight: 300;
}

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

.footer-tagline {
  font-style: italic;
  color: var(--teal);
  font-size: 0.85rem !important;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--teal);
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(17, 28, 51, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(26, 143, 163, 0.2);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-main {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-text h4 svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.cookie-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--teal);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--teal-light);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.cookie-btn-customize {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}

.cookie-btn-customize:hover {
  background: rgba(26, 143, 163, 0.1);
}

/* Cookie Customize Panel */
.cookie-customize-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.cookie-customize-panel.visible {
  max-height: 400px;
  padding-top: 20px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.cookie-option-info h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.cookie-option-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  transition: var(--transition);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--teal);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-save-row {
  text-align: right;
  margin-top: 12px;
}

/* ========================================
   PRIVACY POLICY PAGE
   ======================================== */
.privacy-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.privacy-page .container {
  max-width: 800px;
}

.privacy-page h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.privacy-page .last-updated {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.privacy-page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
}

.privacy-page h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-light);
  margin-top: 24px;
  margin-bottom: 12px;
}

.privacy-page p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.privacy-page ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.privacy-page li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  list-style: disc;
  margin-bottom: 4px;
}

.privacy-page a {
  color: var(--teal);
  text-decoration: underline;
}

.privacy-page a:hover {
  color: var(--teal-dark);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.back-link:hover {
  gap: 12px;
}

.back-link svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-logo {
    width: 200px;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .about-text h2,
  .contact-info h2 {
    font-size: 2rem;
  }

  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .counter-value {
    font-size: 2.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cookie-main {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }

  .privacy-page h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-logo {
    width: 160px;
  }

  .hero-cta {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .service-card {
    padding: 28px 24px;
  }

  .contact-form-box {
    padding: 28px 24px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    text-align: center;
  }
}
