

/* --- DESIGN TOKENS --- */
:root {
  --primary:       #1a6fc4;
  --primary-dark:  #145caa;
  --primary-light: #3a8fe0;
  --accent:        #f0a500;
  --accent-dark:   #d08c00;

  --bg:            #f8f9fc;
  --bg-white:      #ffffff;
  --bg-dark:       #0d1b2e;
  --bg-dark-2:     #0f2540;
  --bg-section:    #f1f5fb;

  --text-dark:     #0d1b2e;
  --text-body:     #374151;
  --text-muted:    #6b7280;
  --text-light:    #d1d5db;

  --border:        #e5e7eb;
  --border-light:  #f3f4f6;

  --footer-bg:     #081423;
  --footer-text:   #94a3b8;
  --footer-link:   #cbd5e1;

  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  --shadow-sm:     0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:        0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.07);
  --shadow-blue:   0 8px 32px rgba(26,111,196,.25);

  --transition:    0.25s ease;
  --transition-lg: 0.4s ease;

  --navbar-h:      72px;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

ul { list-style: none; }

address { font-style: normal; }

/* --- SKIP LINK (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: .5rem 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.625rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(26,111,196,.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,111,196,.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(26,111,196,.12), rgba(26,111,196,.06));
  color: var(--primary);
  border: 1px solid rgba(26,111,196,.2);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .875rem;
}

.section-badge-light {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.2);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title-light { color: #fff; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-subtitle-light { color: rgba(255,255,255,.7); }

/* ===================================================
   NAVBAR
=================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar {
  height: var(--navbar-h);
  background: rgba(13, 27, 46, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled .navbar {
  background: rgba(13, 27, 46, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.logo-sub {
  font-size: .75rem;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}

.nav-link {
  color: rgba(255,255,255,.82);
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.07);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link-cta {
  background: var(--primary);
  color: #fff !important;
  padding: .5rem 1.125rem;
  margin-left: .5rem;
}

.nav-link-cta::after { display: none; }

.nav-link-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

/* Lang switcher */
.lang-switcher {
  display: flex;
  gap: .25rem;
  margin-left: .75rem;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  padding: .3rem .6rem;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .03em;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}

.hamburger-line {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===================================================
   HERO SECTION
=================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--navbar-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('arkaplan.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Koyu overlay — metnin okunabilirliği için */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,15,30,.82) 0%,
    rgba(11,32,69,.75) 40%,
    rgba(15,46,98,.68) 70%,
    rgba(6,15,30,.80) 100%
  );
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,111,196,.15) 0%, transparent 70%);
}

/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-particles::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,111,196,.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}

.hero-particles::after {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(240,165,0,.06) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.5rem;
  animation: fadeInUp .9s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: rgba(240,165,0,.15);
  color: var(--accent);
  border: 1px solid rgba(240,165,0,.3);
  padding: .4rem 1.25rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp .9s .1s ease both;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp .9s .2s ease both;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.72);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp .9s .3s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeInUp .9s .4s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem 3rem;
  animation: fadeInUp .9s .5s ease both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  animation: bounce 2s ease infinite;
  z-index: 1;
}

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

/* ===================================================
   PRODUCTS SECTION
=================================================== */
.products-section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,111,196,.2);
}

.product-media {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--bg-section);
}

.product-image-wrapper {
  width: 100%; height: 100%;
}

.product-image-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-lg);
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.07);
}

.product-badge-overlay {
  position: absolute;
  top: 1rem; left: 1rem;
}

.product-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: .2rem .7rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.product-tag-popular { background: var(--accent); color: #0d1b2e; }

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.product-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.product-actions {
  display: flex;
  gap: .625rem;
  flex-wrap: wrap;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
  padding: .42rem .875rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(26,111,196,.2);
  background: rgba(26,111,196,.05);
  transition: all var(--transition);
  text-decoration: none;
}

.product-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
}

.product-link-video {
  color: #e53e3e;
  border-color: rgba(229,62,62,.2);
  background: rgba(229,62,62,.05);
}

.product-link-video:hover {
  background: #e53e3e;
  color: #fff;
  border-color: #e53e3e;
}

/* ===================================================
   ABOUT SECTION
=================================================== */
.about-section {
  padding: 6rem 0;
  background: var(--bg-section);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  border: 2px solid rgba(26,111,196,.1);
  box-shadow: var(--shadow-lg);
}

.about-factory-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-lg);
}

.about-image-frame:hover .about-factory-img {
  transform: scale(1.04);
}



.about-accent-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--primary);
  color: #fff;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}

.about-accent-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.about-accent-text {
  font-size: .78rem;
  opacity: .85;
  text-align: center;
  max-width: 100px;
}

.about-content { padding: 1rem 0; }

.about-text {
  color: var(--text-body);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.feature-item:hover { box-shadow: var(--shadow); }

.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26,111,196,.12), rgba(26,111,196,.06));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .2rem;
}

.feature-desc {
  font-size: .82rem;
  color: var(--text-muted);
}

/* ===================================================
   SERVICES SECTION
=================================================== */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,111,196,.08) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-lg);
}

.service-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(26,111,196,.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(26,111,196,.2), rgba(26,111,196,.08));
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(26,111,196,.3);
}

.service-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .625rem;
}

.service-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

/* ===================================================
   AGENTS SECTION
=================================================== */
.agent-section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.agent-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition);
  color: inherit;
}

.agent-card:hover {
  border-color: var(--primary);
  background: rgba(26,111,196,.04);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.agent-logo-placeholder {
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.agent-info { flex: 1; }

.agent-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .2rem;
}

.agent-country {
  font-size: .8rem;
  color: var(--text-muted);
}

.agent-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color var(--transition), transform var(--transition);
}

.agent-card:hover .agent-arrow {
  color: var(--primary);
  transform: translate(2px, -2px);
}

/* ===================================================
   INSIDE / COMPONENTS SECTION
=================================================== */
.inside-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0d2a50 0%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.inside-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240,165,0,.05) 0%, transparent 70%);
  pointer-events: none;
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.inside-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  transition: all var(--transition-lg);
}

.inside-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(26,111,196,.35);
  transform: translateY(-5px);
}

.inside-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,111,196,.2), rgba(26,111,196,.06));
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background var(--transition);
}

.inside-card:hover .inside-icon {
  background: rgba(26,111,196,.3);
}

.inside-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
}

.inside-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ===================================================
   CONTACT SECTION
=================================================== */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-section);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto;
}



.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.contact-info-card:hover { box-shadow: var(--shadow); }

.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26,111,196,.12), rgba(26,111,196,.06));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .4rem;
}

.contact-info-text {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-info-link {
  font-size: .88rem;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info-link:hover { color: var(--primary-dark); text-decoration: underline; }

.contact-info-meta {
  font-size: .82rem;
  color: var(--text-muted);
}



/* ===================================================
   FOOTER
=================================================== */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  padding: 4rem 1.5rem;
  align-items: start;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: .88rem;
  color: var(--footer-text);
  line-height: 1.6;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4.footer-col-title {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.footer-col ul li a {
  font-size: .88rem;
  color: var(--footer-link);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.footer-copy {
  font-size: .82rem;
  color: var(--footer-text);
}

.footer-copy strong { color: rgba(255,255,255,.7); }

.footer-legal {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  text-align: right;
}

/* ===================================================
   SCROLL ANIMATION (Intersection Observer)
=================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .inside-grid { grid-template-columns: 1fr 1fr; }

  .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --navbar-h: 64px; }

  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: rgba(13, 27, 46, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: .25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    max-height: calc(100vh - var(--navbar-h));
    overflow-y: auto;
  }

  .nav-menu.open { display: flex; }

  .nav-link {
    width: 100%;
    padding: .875rem 1.25rem;
    border-radius: var(--radius);
    font-size: .95rem;
  }

  .nav-link::after { display: none; }

  .nav-link-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-left: 0;
  }

  .lang-switcher { margin-left: 0; }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
  }

  .stat-divider { width: 60px; height: 1px; }

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

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

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

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



  .footer-links { grid-template-columns: 1fr 1fr; }

  .footer-bottom-container { flex-direction: column; text-align: center; }

  .footer-legal { text-align: center; }

  .about-accent-card { right: 0; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }


}

@media (max-width: 480px) {
  .section-title { font-size: 1.625rem; }
  .hero-stats { padding: 1.25rem 1.5rem; }
  .stat-number { font-size: 1.5rem; }
  .footer-links { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   HAMBURGER ANIMATION
=================================================== */
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================================
   FOCUS VISIBLE (Accessibility)
=================================================== */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
