/* ============================================
   GETESA - Modern Telecom Redesign
   ============================================ */
:root {
  --blue-900: #07274f;
  --blue-800: #0b3c7e;
  --blue-700: #0d4a9b;
  --blue-600: #1160c4;
  --blue-100: #e3eefc;
  --blue-50: #f2f7fe;
  --orange: #f7941d;
  --orange-dark: #e07f06;
  --ink: #16243a;
  --gray-600: #5a6b82;
  --gray-200: #e4eaf2;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(11, 60, 126, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 60, 126, 0.18);
  --grad: linear-gradient(135deg, #0b3c7e 0%, #1160c4 60%, #1e7ae0 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem; transition: all .25s ease;
  border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(247,148,29,.35); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-blue { background: var(--blue-700); color: #fff; }
.btn-blue:hover { background: var(--blue-800); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo img { height: 60px; width: auto; }
.main-nav ul { display: flex; gap: 2rem; align-items: center; }
.main-nav a { color: var(--ink); font-weight: 600; font-size: .95rem; position: relative; padding: .4rem 0; }
.main-nav li:not(.nav-cta) a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--orange); border-radius: 2px; transition: width .25s ease;
}
.main-nav li:not(.nav-cta) a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--blue-700); }
.nav-cta { margin-left: .5rem; }
.nav-cta .btn { padding: .55rem 1.25rem; font-size: .88rem; white-space: nowrap; }
.nav-cta .btn:hover { transform: none; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.7rem; color: var(--blue-800); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(105deg, rgba(7,39,79,.93) 0%, rgba(11,60,126,.84) 55%, rgba(17,96,196,.65) 100%),
    url("../images/main-banner.jpg") center / cover no-repeat;
  color: #fff; position: relative; overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.hero::before { width: 520px; height: 520px; top: -200px; right: -120px; }
.hero::after { width: 320px; height: 320px; bottom: -140px; left: -90px; }
.hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem;
  align-items: center; padding: 5.5rem 0; position: relative; z-index: 1;
}
.hero .eyebrow {
  display: inline-block; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: .35rem 1rem; border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.12; font-weight: 800; margin-bottom: 1.2rem; }
.hero h1 .accent { color: var(--orange); }
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 34rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hero-media { position: relative; }
.hero-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: #fff; color: var(--blue-800);
  padding: .9rem 1.4rem; border-radius: 14px; box-shadow: var(--shadow-lg);
  font-weight: 800; font-size: 1.05rem; line-height: 1.3;
}
.hero-badge small { display: block; color: var(--gray-600); font-weight: 600; font-size: .75rem; }

/* Page hero (interior pages) */
.page-hero { background: var(--grad); color: #fff; padding: 4rem 0 4.5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,.07); top: -180px; right: -100px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 38rem; margin-top: .6rem; font-size: 1.1rem; }

/* ---------- Sections ---------- */
section { padding: 4.5rem 0; }
.section-head { text-align: center; max-width: 44rem; margin: 0 auto 3rem; }
.section-head .kicker { color: var(--orange); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--blue-900); margin-top: .4rem; }
.section-head p { color: var(--gray-600); margin-top: .7rem; }
.bg-soft { background: var(--blue-50); }
.cta-section { padding: 50px 0; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--blue-100); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media.contain img { object-fit: contain; padding: 1rem; }
.card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.25rem; font-weight: 800; color: var(--blue-900); margin-bottom: .7rem; }
.card-body ul { margin: 0 0 1.2rem; display: grid; gap: .55rem; }
.card-body ul li { padding-left: 1.5rem; position: relative; color: var(--gray-600); font-size: .95rem; }
.card-body ul li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.card-body p { color: var(--gray-600); font-size: .95rem; margin-bottom: 1rem; }
.card-body .btn { margin-top: auto; align-self: flex-start; }

/* Price cards */
.price-card { text-align: center; padding: 2rem 1.5rem; }
.price-card img { width: 110px; height: 110px; object-fit: contain; margin: 0 auto 1.2rem; }
.price-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--blue-900); }
.price-card .price { font-size: 1.25rem; font-weight: 800; color: var(--orange); margin-top: .4rem; }
.price-card .tag {
  display: inline-block; background: var(--blue-100); color: var(--blue-700);
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .8rem; border-radius: 999px; margin-bottom: .9rem;
}

/* Feature strip */
.feature-strip { background: var(--blue-800); color: #fff; border-radius: var(--radius); padding: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-strip .feat h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .3rem; }
.feature-strip .feat p { color: rgba(255,255,255,.75); font-size: .92rem; }
.feature-strip .num {
  width: 46px; height: 46px; border-radius: 12px; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem; margin-bottom: 1rem;
}

/* Split rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; max-height: 380px; object-fit: cover; }
.split-body .kicker { color: var(--orange); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; }
.split-body h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--blue-900); margin: .4rem 0 1rem; }
.split-body ul { display: grid; gap: .7rem; margin-bottom: 1.5rem; }
.split-body ul li { padding-left: 1.7rem; position: relative; color: var(--gray-600); }
.split-body ul li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.split-body .note { background: var(--blue-50); border-left: 4px solid var(--orange); padding: .9rem 1.2rem; border-radius: 0 12px 12px 0; font-size: .92rem; color: var(--blue-800); font-weight: 600; margin-bottom: 1.5rem; }

/* Big CTA banner */
.cta-banner { background: var(--grad); border-radius: var(--radius); color: #fff; padding: 2.5rem 3.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.08); top: -120px; right: -60px; }
.cta-banner h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; position: relative; }
.cta-banner p { color: rgba(255,255,255,.85); margin-top: .4rem; position: relative; }
.cta-banner .big { font-size: 2.6rem; color: var(--orange); font-weight: 800; position: relative; padding: .5rem 0; }

/* ---------- Legal pages ---------- */
.legal { max-width: 860px; margin: 0 auto; }
.legal .updated { color: var(--gray-600); font-size: .9rem; margin-bottom: 2.5rem; }
.legal h2 { font-size: 1.45rem; font-weight: 800; color: var(--blue-900); margin: 2.5rem 0 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.legal h2:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }
.legal h3 { font-size: 1.1rem; font-weight: 700; color: var(--blue-800); margin: 1.6rem 0 .6rem; }
.legal p { color: var(--gray-600); margin-bottom: 1rem; }
.legal ul, .legal ol { margin: 0 0 1rem 1.4rem; color: var(--gray-600); }
.legal ul { list-style: disc; }
.legal ol { list-style: decimal; }
.legal ul li, .legal ol li { margin-bottom: .5rem; padding-left: .3rem; }
.legal .legal-note { background: var(--blue-50); border-left: 4px solid var(--orange); padding: 1rem 1.3rem; border-radius: 0 12px 12px 0; font-size: .92rem; color: var(--blue-800); margin: 2rem 0; }
.legal table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .92rem; }
.legal table th { background: var(--blue-800); color: #fff; text-align: left; padding: .7rem 1rem; }
.legal table td { padding: .7rem 1rem; border-bottom: 1px solid var(--gray-200); color: var(--gray-600); vertical-align: top; }

/* Google Maps embed */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; }

/* ---------- FAQ accordion ---------- */
.faq details {
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  margin-bottom: 1rem; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 1.2rem 1.5rem; font-weight: 700; color: var(--blue-900);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--orange); font-weight: 800; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 1.5rem 1.3rem; color: var(--gray-600); }
.faq .faq-body ul { display: grid; gap: .5rem; margin-top: .5rem; }
.faq .faq-body ul li { padding-left: 1.5rem; position: relative; }
.faq .faq-body ul li::before { content: "•"; position: absolute; left: .4rem; color: var(--orange); font-weight: 800; }

/* ---------- Contact ---------- */
.contact-card { text-align: center; padding: 2.5rem 1.8rem; }
.contact-card .icon {
  width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 18px;
  background: var(--blue-100); color: var(--blue-700);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.contact-card h3 { font-weight: 800; color: var(--blue-900); margin-bottom: .6rem; }
.contact-card p { color: var(--gray-600); font-size: .95rem; }
.contact-card a.big-link { display: block; margin-top: .5rem; font-weight: 800; color: var(--orange); font-size: 1.15rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,.8); padding: 4rem 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; }
.site-footer h4 { color: #fff; font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.1rem; }
.site-footer p { font-size: .92rem; line-height: 1.7; }
.site-footer ul { display: grid; gap: .6rem; }
.site-footer ul a { color: rgba(255,255,255,.8); font-size: .95rem; }
.site-footer ul a:hover { color: var(--orange); }
.footer-logo { height: 54px; width: auto; margin-bottom: 1.2rem; background: #fff; border-radius: 10px; padding: 6px; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background .25s;
}
.footer-social a:hover { background: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; text-align: center; font-size: .85rem; color: rgba(255,255,255,.55); }
address { font-style: normal; font-size: .92rem; line-height: 1.7; }
address strong { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner, .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 1rem 0; }
  .main-nav ul li { width: 100%; }
  .main-nav a { display: block; padding: .9rem 1.6rem; }
  .nav-cta { margin: .5rem 1.6rem 1rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-inner { padding: 3.5rem 0; }
  .cta-banner { padding: 2rem; }
}
