/* ============================================================
   SoporTIC — Main Stylesheet
   Brand: #1F6CB5 | #14508E | #39B54A | #333333 | #F5F5F5
   Fonts: Orbitron (headings), Exo 2 (body)
   ============================================================ */

:root {
  --blue:       #1F6CB5;
  --blue-dark:  #14508E;
  --green:      #39B54A;
  --gray-dark:  #333333;
  --gray-light: #F5F5F5;
  --white:      #FFFFFF;
  --shadow:     0 4px 24px rgba(20,80,142,.13);
  --radius:     10px;
  --transition: .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Exo 2", sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4 {
  font-family: "Orbitron", sans-serif;
  line-height: 1.2;
  color: var(--blue-dark);
}

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

.btn {
  display: inline-block;
  padding: .75rem 1.8rem;
  border-radius: 6px;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}
.btn-primary:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(31,108,181,.3);
}
.btn-cta {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-cta:hover {
  background: #2da03d;
  border-color: #2da03d;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(57,181,74,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue-dark);
}

.tag {
  display: inline-block;
  background: rgba(57,181,74,.12);
  color: var(--green);
  border: 1px solid rgba(57,181,74,.3);
  border-radius: 20px;
  padding: .2rem .85rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: .75rem;
}
.section-subtitle {
  color: #555;
  max-width: 620px;
  margin-bottom: 2.5rem;
}

/* ---- NAV ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(20,80,142,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
  transition: background var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--green);
}

.nav-cta { margin-left: .5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d2d4e 0%, #14508E 50%, #1F6CB5 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,181,74,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(57,181,74,.15);
  border: 1px solid rgba(57,181,74,.4);
  border-radius: 20px;
  padding: .3rem 1rem;
  margin-bottom: 1.5rem;
  font-size: .78rem;
  font-weight: 700;
  color: #6ee87a;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero h1 .accent { color: var(--green); }

.hero-desc {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  color: var(--green);
  display: block;
  font-weight: 900;
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  animation: float-card 5s ease-in-out infinite;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card-title {
  font-family: "Orbitron", sans-serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hero-card-title::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.service-chip {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  margin-bottom: .6rem;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  transition: all var(--transition);
}
.service-chip:hover {
  background: rgba(57,181,74,.15);
  border-color: rgba(57,181,74,.4);
}
.chip-icon { font-size: 1.1rem; }

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

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-top-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(31,108,181,.15);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31,108,181,.1), rgba(57,181,74,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1rem;
  color: var(--blue-dark);
  margin-bottom: .6rem;
}

.service-card p {
  font-size: .9rem;
  color: #555;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-link {
  color: var(--green);
  font-weight: 700;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: .6rem; color: var(--green); }

/* ---- WHY US ---- */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text h2 { margin-bottom: 1rem; }
.why-text p { color: #555; margin-bottom: 2rem; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: #444;
}
.feature-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: .75rem;
  font-weight: 900;
  margin-top: .15rem;
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.metric-box {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border-bottom: 3px solid var(--blue);
}
.metric-box:nth-child(even) { margin-top: 1.5rem; border-bottom-color: var(--green); }
.metric-num {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: var(--blue-dark);
  display: block;
}
.metric-label { font-size: .8rem; color: #666; margin-top: .25rem; }

/* ---- ISO BANNER ---- */
.iso-banner {
  background: linear-gradient(135deg, #0d2d4e, #14508E);
  padding: 64px 0;
  color: var(--white);
  text-align: center;
}
.iso-banner h2 { color: var(--white); margin-bottom: 1rem; }
.iso-banner p { color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto 2rem; }
.iso-badges { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.iso-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: .5rem 1.25rem;
  font-size: .85rem;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
}

/* ---- PRODUCTS ---- */
.products { background: var(--gray-light); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 38px rgba(20,80,142,.18); }
.product-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  display: flex;
  align-items: center;
  gap: 1rem;
}
.product-header-icon { font-size: 2rem; }
.product-header h3 { color: var(--white); font-size: .95rem; }
.product-body { padding: 1.5rem; }
.product-body p { font-size: .88rem; color: #555; margin-bottom: 1rem; }
.product-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.product-tag {
  background: var(--gray-light);
  color: var(--blue);
  border-radius: 4px;
  padding: .2rem .6rem;
  font-size: .75rem;
  font-weight: 600;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, #39B54A, #2da03d);
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.88); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer {
  background: #0a1e35;
  color: rgba(255,255,255,.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 42px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: .88rem; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-icon:hover { background: var(--green); color: var(--white); }

.footer-col h4 {
  font-family: "Orbitron", sans-serif;
  color: var(--white);
  font-size: .8rem;
  margin-bottom: 1.25rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}

/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
  background: linear-gradient(135deg, #0d2d4e, #14508E);
  padding: 120px 0 64px;
  text-align: center;
  color: var(--white);
}
.page-header h1 { color: var(--white); font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: .5rem; }
.page-header p { color: rgba(255,255,255,.75); }

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
}
.contact-item h4 { color: var(--blue-dark); font-size: .9rem; margin-bottom: .25rem; }
.contact-item p, .contact-item a { font-size: .95rem; color: #555; }
.contact-item a:hover { color: var(--blue); }

.contact-form {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: .4rem;
  color: var(--blue-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-family: "Exo 2", sans-serif;
  font-size: .95rem;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--gray-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,108,181,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---- ABOUT PAGE ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.value-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.value-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.value-card h3 { font-size: .95rem; margin-bottom: .5rem; }
.value-card p { font-size: .85rem; color: #666; }

/* ---- POLICY PAGES ---- */
.policy-content { max-width: 840px; margin: 0 auto; }
.policy-content h2 { font-size: 1.2rem; color: var(--blue-dark); margin: 2rem 0 .75rem; padding-bottom: .4rem; border-bottom: 2px solid var(--gray-light); }
.policy-content h3 { font-size: 1rem; color: var(--blue); margin: 1.25rem 0 .4rem; }
.policy-content p, .policy-content li { font-size: .95rem; color: #444; margin-bottom: .75rem; }
.policy-content ul, .policy-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-content .policy-date { font-size: .85rem; color: #888; font-style: italic; margin-bottom: 2rem; }
.policy-highlight {
  background: rgba(31,108,181,.06);
  border-left: 3px solid var(--blue);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}

/* ---- COOKIE BANNER ---- */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(660px, calc(100vw - 32px));
  background: #0a1e35;
  color: var(--white);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  box-shadow: 0 12px 48px rgba(0,0,0,.35);
  z-index: 9999;
  display: none;
  border: 1px solid rgba(57,181,74,.3);
  animation: slide-up .4s ease;
}
@keyframes slide-up {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
#cookie-banner.visible { display: block; }
.cookie-inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 200px; font-size: .88rem; color: rgba(255,255,255,.8); }
.cookie-text strong { color: var(--white); font-family: "Orbitron", sans-serif; font-size: .78rem; display: block; margin-bottom: .3rem; }
.cookie-text a { color: var(--green); }
.cookie-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--green); color: var(--white);
  border: none; border-radius: 6px; padding: .55rem 1.2rem;
  font-weight: 700; font-size: .85rem; cursor: pointer; transition: all var(--transition);
}
.btn-cookie-accept:hover { background: #2da03d; }
.btn-cookie-decline {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.2); border-radius: 6px;
  padding: .55rem 1rem; font-size: .85rem; cursor: pointer; transition: all var(--transition);
}
.btn-cookie-decline:hover { background: rgba(255,255,255,.15); }

.cookie-manage-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 9998;
  background: var(--blue-dark); color: var(--white);
  border: none; border-radius: 50%; width: 52px; height: 52px;
  font-size: 1.4rem; cursor: pointer; box-shadow: 0 4px 16px rgba(20,80,142,.4);
  display: none; align-items: center; justify-content: center; transition: all var(--transition);
}
.cookie-manage-btn:hover { background: var(--blue); transform: scale(1.08); }
.cookie-manage-btn.visible { display: flex; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: repeat(4, 1fr); }
  .metric-box:nth-child(even) { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section-pad { padding: 56px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: #0a1e35; padding: 1.5rem; gap: 1rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 1.8rem; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #cookie-banner { padding: 1.25rem; }
  .cookie-inner { flex-direction: column; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}
