/* ============================================
   VoiceSaver® — Modern Global Styles (2025)
   Fonts: Plus Jakarta Sans (headings) + Outfit (body)
   ============================================ */

:root {
  --vs-navy:    #1E3A5F;
  --vs-blue:    #2563EB;
  --vs-sky:     #3B82F6;
  --vs-teal:    #0D9488;
  --vs-white:   #FFFFFF;
  --vs-light:   #F1F5F9;
  --vs-gray:    #64748B;
  --vs-dark:    #1E293B;
  --vs-accent:  #2563EB;
  --vs-accent2: #EF4444;
  --vs-border:  #E2E8F0;
  --vs-shadow:  0 1px 3px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.03);
  --vs-shadow-lg: 0 8px 40px rgba(30,58,95,.08);
  --vs-radius:  12px;
  --vs-radius-lg: 20px;
  --font-head:  'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  --font-body:  'Outfit', 'Source Sans 3', system-ui, sans-serif;
  --max-w:      1200px;
  --nav-h:      72px;
  --ease:       cubic-bezier(.22,1,.36,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--vs-dark);
  line-height: 1.7;
  background: var(--vs-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--vs-blue); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--vs-teal); }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Utility */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }
.section--alt { background: var(--vs-light); }
.text-center { text-align: center; }

/* ---- Scroll reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid var(--vs-border);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem;
  color: var(--vs-navy);
}
.nav__logo img { height: 70px; filter: none; }
.nav__logo span { color: var(--vs-blue); }

/* Desktop links */
.nav__links {
  list-style: none; display: flex; gap: 4px; align-items: center;
}
.nav__links > li { position: relative; }
.nav__links > li > a {
  display: block; padding: 8px 16px; color: var(--vs-gray);
  font-size: .9rem; font-weight: 500; border-radius: 8px;
  transition: all .25s var(--ease);
  letter-spacing: 0.01em;
}
.nav__links > li > a:hover,
.nav__links > li > a.active {
  background: var(--vs-light); color: var(--vs-blue);
}

/* Dropdown */
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: -8px;
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  box-shadow: 0 16px 48px rgba(10,22,40,.12), 0 4px 12px rgba(10,22,40,.06);
  min-width: 240px; padding: 8px;
  padding-top: 16px;   /* visual spacing without a hover gap */
  z-index: 100;
  border: 1px solid var(--vs-border);
  animation: dropIn .2s var(--ease);
}
/* Invisible bridge so mouse can travel from link to dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
  background: transparent;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.dropdown-menu a {
  display: block; padding: 10px 16px; color: var(--vs-dark);
  font-size: .88rem; border-radius: 8px;
  transition: all .15s var(--ease);
}
.dropdown-menu a:hover {
  background: var(--vs-light); color: var(--vs-blue);
  transform: translateX(4px);
}
li.has-dropdown:hover .dropdown-menu { display: block; }

/* Hamburger */
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span {
  display: block; width: 24px; height: 2px; background: var(--vs-navy); margin: 6px 0;
  border-radius: 2px; transition: .3s var(--ease);
}

/* ---- HERO ---- */
.hero {
  margin-top: var(--nav-h);
  position: relative;
  background: linear-gradient(135deg, #E8F4FD 0%, #F0F7FF 40%, #E1F0FA 100%);
  color: var(--vs-dark);
  padding: 100px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -40%; right: -15%;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,215,240,.2), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,220,240,.15), transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 720px; }
.hero__tag {
  display: inline-block;
  background: rgba(37,99,235,.08);
  color: var(--vs-blue);
  padding: 8px 20px; border-radius: 100px;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(37,99,235,.15);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--vs-navy);
}
.hero p {
  font-size: 1.15rem;
  color: var(--vs-gray);
  max-width: 560px;
  margin-bottom: 32px;
  font-weight: 400;
}
.btn {
  display: inline-block; padding: 14px 32px;
  background: var(--vs-blue); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  border-radius: 10px; border: none; cursor: pointer;
  transition: all .25s var(--ease);
  letter-spacing: .01em;
  box-shadow: 0 2px 8px rgba(37,99,235,.2);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.3);
  color: #fff;
  background: #1D4ED8;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--vs-blue);
  color: var(--vs-blue);
  box-shadow: none;
}
.btn--outline:hover {
  border-color: var(--vs-blue);
  background: var(--vs-blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,.2);
}

/* ---- PAGE HEADER (for sub-pages) ---- */
.page-header {
  margin-top: var(--nav-h);
  background: linear-gradient(135deg, #E8F4FD 0%, #F0F7FF 60%, #E1F0FA);
  color: var(--vs-navy);
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,215,240,.15), transparent 70%);
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  position: relative;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--vs-navy);
}
.page-header p {
  color: var(--vs-gray);
  margin-top: 10px;
  font-size: 1.1rem;
  position: relative;
  font-weight: 400;
}

/* ---- FEATURES GRID ---- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--vs-white);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius-lg);
  padding: 36px 30px;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vs-blue), var(--vs-teal));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.feature-card:hover {
  box-shadow: var(--vs-shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(26,111,239,.1), rgba(0,184,148,.1));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--vs-blue); font-size: 1.4rem; margin-bottom: 20px;
}
.feature-card__img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 20px;
  background: var(--vs-light);
  padding: 12px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--vs-dark); }
.feature-card p { color: var(--vs-gray); font-size: .92rem; line-height: 1.65; }

/* ---- IP PHONES ---- */
.phones-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.phone-card {
  background: var(--vs-white); border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius-lg); padding: 30px 26px;
  transition: all .3s var(--ease);
}
.phone-card:hover {
  box-shadow: var(--vs-shadow-lg);
  transform: translateY(-4px);
}
.phone-card h3 {
  font-size: 1.05rem; color: var(--vs-blue); margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 2px solid var(--vs-light);
}
.phone-card ul { padding-left: 18px; }
.phone-card li { font-size: .9rem; color: var(--vs-gray); margin-bottom: 8px; line-height: 1.55; }

/* ---- PRODUCTS / SOLUTION CARDS ---- */
.product-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--vs-white); border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius-lg); padding: 40px 32px;
  text-align: center;
  transition: all .35s var(--ease);
}
.product-card:hover {
  box-shadow: var(--vs-shadow-lg);
  transform: translateY(-6px);
}
.product-card h3 { font-size: 1.15rem; color: var(--vs-navy); margin-bottom: 14px; }
.product-card p { color: var(--vs-gray); font-size: .93rem; }
.product-card__img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 20px;
  background: var(--vs-light);
  padding: 12px;
}

/* ---- CONTENT SECTIONS ---- */
.content-block { max-width: 820px; margin: 0 auto; }
.content-block h2 { font-size: 1.8rem; margin-bottom: 16px; color: var(--vs-navy); }
.content-block h3 {
  font-size: 1.25rem; margin: 36px 0 12px; color: var(--vs-dark);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--vs-light);
}
.content-block h4 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
  color: var(--vs-blue);
  font-weight: 600;
}
.content-block p { margin-bottom: 16px; color: #374151; }

/* Legal content (Privacy, Terms) */
.legal-content h3 {
  font-size: 1.15rem;
  background: var(--vs-light);
  padding: 14px 20px;
  border-radius: var(--vs-radius);
  border-bottom: none;
  margin-top: 32px;
  color: var(--vs-navy);
}
.legal-list {
  padding-left: 24px;
  margin: 12px 0 20px;
}
.legal-list li {
  color: #374151;
  margin-bottom: 10px;
  line-height: 1.65;
  font-size: .95rem;
}
.contact-card {
  background: var(--vs-light);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius);
  padding: 24px 28px;
  margin-top: 12px;
}
.contact-card p { margin-bottom: 6px; }

/* Info cards */
.info-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px; margin-top: 40px;
}
.info-card {
  background: var(--vs-white); border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius-lg); padding: 36px 28px;
  text-align: center;
  transition: all .3s var(--ease);
}
.info-card:hover { box-shadow: var(--vs-shadow-lg); transform: translateY(-4px); }
.info-card h3 { color: var(--vs-navy); margin-bottom: 12px; font-size: 1.1rem; }
.info-card p { color: var(--vs-gray); font-size: .9rem; }

/* ---- MILESTONES TIMELINE ---- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 14px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--vs-blue), var(--vs-teal));
  border-radius: 2px;
}
.timeline__item { position: relative; margin-bottom: 40px; }
.timeline__item::before {
  content: ''; position: absolute; left: -32px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--vs-blue); border: 3px solid var(--vs-white);
  box-shadow: 0 0 0 3px var(--vs-blue);
}
.timeline__year {
  font-family: var(--font-head); font-weight: 700;
  color: var(--vs-blue); font-size: 1rem; margin-bottom: 6px;
}
.timeline__item p { color: var(--vs-gray); font-size: .92rem; }

/* ---- CAREER / JOBS ---- */
.careers-intro {
  text-align: center;
  margin-bottom: 48px;
}
.careers-intro p {
  font-size: 1.1rem;
  color: var(--vs-blue);
  font-weight: 500;
  background: rgba(26,111,239,.06);
  padding: 16px 28px;
  border-radius: var(--vs-radius);
  display: inline-block;
  border: 1px solid rgba(26,111,239,.1);
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}
.job-card {
  background: var(--vs-white);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius-lg);
  overflow: hidden;
  transition: all .35s var(--ease);
}
.job-card:hover {
  box-shadow: var(--vs-shadow-lg);
  transform: translateY(-4px);
}
.job-card__header {
  background: linear-gradient(135deg, var(--vs-navy), #0F2847);
  padding: 24px 28px;
  color: #fff;
}
.job-card__location {
  display: inline-block;
  font-size: .78rem;
  font-weight: 500;
  color: var(--vs-sky);
  background: rgba(86,204,242,.12);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: .03em;
}
.job-card__header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.job-card__body { padding: 24px 28px; }
.job-card__body p {
  color: #374151;
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.job-req { color: var(--vs-gray) !important; font-size: .88rem !important; }
.job-apply {
  background: var(--vs-light);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: .88rem !important;
  color: var(--vs-gray) !important;
  border-left: 3px solid var(--vs-blue);
}

/* ---- PRESS RELEASES ---- */
.press-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.press-highlight-card {
  background: var(--vs-white);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius-lg);
  padding: 28px 24px;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.press-highlight-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vs-blue), var(--vs-sky));
}
.press-highlight-card:hover {
  box-shadow: var(--vs-shadow-lg);
  transform: translateY(-4px);
}
.press-date {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  color: var(--vs-blue);
  background: rgba(26,111,239,.08);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.press-highlight-card p {
  color: #374151;
  font-size: .93rem;
  line-height: 1.6;
}
.press-release-full {
  max-width: 820px;
  margin: 0 auto;
  background: var(--vs-white);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius-lg);
  padding: 48px 44px;
}
.press-release-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.press-release-badge {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--vs-blue);
  background: rgba(37,99,235,.08);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(37,99,235,.15);
}
.press-release-full h2 {
  font-size: 1.7rem;
  color: var(--vs-navy);
  margin-bottom: 8px;
}
.press-subtitle {
  font-size: 1.1rem;
  color: var(--vs-blue);
  font-weight: 500;
  margin-bottom: 28px !important;
  font-style: italic;
}
.press-release-full p {
  color: #374151;
  margin-bottom: 18px;
  font-size: .95rem;
  line-height: 1.75;
}
.press-quote {
  background: linear-gradient(135deg, rgba(26,111,239,.04), rgba(0,184,148,.04));
  border-left: 4px solid var(--vs-blue);
  padding: 28px 32px;
  margin: 32px 0;
  border-radius: 0 var(--vs-radius) var(--vs-radius) 0;
  font-style: italic;
  color: #374151;
  font-size: .95rem;
  line-height: 1.75;
}
.press-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 600;
  color: var(--vs-navy);
  font-size: .88rem;
}
.press-about {
  background: var(--vs-light);
  border-radius: var(--vs-radius);
  padding: 28px 32px;
  margin: 32px 0;
}
.press-about h3 {
  font-size: 1.05rem;
  color: var(--vs-navy);
  margin-bottom: 10px;
}
.press-about p { font-size: .92rem; margin-bottom: 0; }
.press-contact {
  border-top: 1px solid var(--vs-border);
  padding-top: 24px;
  margin-top: 24px;
}
.press-contact h4 {
  font-size: .9rem;
  color: var(--vs-gray);
  font-weight: 500;
  margin-bottom: 12px;
}
.press-contact p { font-size: .92rem; line-height: 1.8; }
.press-disclaimer {
  color: var(--vs-gray) !important;
  font-size: .84rem !important;
  margin-top: 24px !important;
  padding-top: 16px;
  border-top: 1px solid var(--vs-border);
}

/* ---- CONTACT / FORMS ---- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-info h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--vs-navy); }
.contact-info p { color: var(--vs-gray); margin-bottom: 20px; }
.contact-info a { color: var(--vs-blue); font-weight: 600; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .88rem; font-weight: 600;
  color: var(--vs-navy); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--vs-border); border-radius: 10px;
  font-family: var(--font-body); font-size: .95rem;
  transition: all .25s var(--ease);
  background: var(--vs-white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--vs-blue);
  box-shadow: 0 0 0 4px rgba(26,111,239,.1);
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(160deg, var(--vs-navy), #0F2847 50%, var(--vs-blue));
  color: #fff; text-align: center; padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86,204,242,.06), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: 1.9rem; margin-bottom: 14px;
  position: relative;
  font-weight: 800;
}
.cta-banner p {
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  font-weight: 300;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--vs-light);
  color: var(--vs-gray);
  padding: 64px 0 32px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--vs-border);
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p { font-size: .88rem; margin-top: 16px; line-height: 1.7; color: var(--vs-gray); }
.footer h4 {
  color: var(--vs-navy); font-size: .82rem; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 18px;
  font-weight: 700;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer li a {
  color: var(--vs-gray); font-size: .88rem;
  transition: all .25s var(--ease);
}
.footer li a:hover { color: var(--vs-blue); transform: translateX(4px); display: inline-block; }
.footer__bottom {
  border-top: 1px solid var(--vs-border);
  padding-top: 28px; font-size: .82rem; text-align: center;
  color: var(--vs-gray);
}

/* ---- PAGE IMAGES ---- */
.content-img { width:100%; max-width:700px; margin:28px auto; display:block; border-radius:var(--vs-radius-lg); box-shadow:var(--vs-shadow-lg); }
.content-img--wide { max-width:100%; }
.content-img--small { max-width:400px; }
.img-row { display:flex; gap:24px; margin:28px 0; flex-wrap:wrap; justify-content:center; }
.img-row img { flex:1 1 280px; max-width:48%; border-radius:var(--vs-radius-lg); box-shadow:var(--vs-shadow); }
.section-with-img { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
.section-with-img--reverse { direction:rtl; }
.section-with-img--reverse > * { direction:ltr; }
.section-with-img img { width:100%; border-radius:var(--vs-radius-lg); box-shadow:var(--vs-shadow); }
@media(max-width:768px) {
  .section-with-img { grid-template-columns:1fr; }
  .img-row img { max-width:100%; flex:1 1 100%; }
}
.icon-section { display:grid; grid-template-columns:80px 1fr; gap:20px; align-items:start; margin-bottom:32px; }
.icon-section img { width:64px; height:64px; }
@media(max-width:600px) { .icon-section { grid-template-columns:1fr; text-align:center; } .icon-section img { margin:0 auto; } }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav__phone { display: none !important; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; width: 100%;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav__links.open .dropdown-menu {
    position: static; box-shadow: none;
    background: var(--vs-light);
    display: none;
    border: none;
    padding: 4px 0;
  }
  .nav__links.open li.has-dropdown.open .dropdown-menu {
    display: block;
  }
  .dropdown-menu a { color: var(--vs-gray); }
  .dropdown-menu a:hover { background: var(--vs-light); color: var(--vs-blue); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 70px; }
  .jobs-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .features-grid, .phones-grid, .product-cards { grid-template-columns: 1fr; }
  .press-highlights { grid-template-columns: 1fr; }
  .press-release-full { padding: 28px 20px; }
  .section { padding: 64px 0; }
}

/* ---- SECTION DIVIDERS ---- */
.section-divider {
  text-align: center;
  font-size: 1.6rem;
  color: var(--vs-navy);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}
.section-divider::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--vs-blue), var(--vs-teal));
  border-radius: 2px;
}

/* ---- PRICING CARDS ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--vs-white);
  border-radius: var(--vs-radius-lg);
  box-shadow: var(--vs-shadow);
  overflow: hidden;
  padding: 0 28px 28px;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--vs-shadow-lg); }
.pricing-card--featured {
  border: 2px solid var(--vs-blue);
  position: relative;
}
.pricing-card__header {
  text-align: center;
  padding: 28px 0 20px;
  border-bottom: 1px solid rgba(10,22,40,.08);
  margin-bottom: 20px;
}
.pricing-card__header h3 {
  font-size: 1.1rem; color: var(--vs-navy); margin-bottom: 8px;
}
.pricing-card__price {
  font-family: var(--font-head);
  font-size: 2.4rem; font-weight: 800;
  color: var(--vs-blue);
}
.pricing-card__price span {
  font-size: .9rem; font-weight: 400; color: var(--vs-gray);
}
.pricing-card__features {
  list-style: none; padding: 0; flex: 1; margin-bottom: 24px;
}
.pricing-card__features li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--vs-gray);
  font-size: .93rem;
  border-bottom: 1px solid rgba(10,22,40,.04);
}
.pricing-card__features li::before {
  content: '\\2713';
  position: absolute; left: 0;
  color: var(--vs-teal); font-weight: 700;
}

/* ---- SERVICE CARDS (Telecom Services) ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--vs-white);
  border-radius: var(--vs-radius-lg);
  box-shadow: var(--vs-shadow);
  padding: 32px;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--vs-shadow-lg); }
.service-card h3 {
  font-size: 1.1rem; color: var(--vs-navy); margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(26,111,239,.15);
}
.service-card p { color: var(--vs-gray); font-size: .93rem; line-height: 1.6; }

/* ---- APPLICATION CARDS (IVR & CardSaver) ---- */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.app-card {
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
  padding: 24px;
  transition: transform .2s;
}
.app-card:hover { transform: translateY(-3px); }
.app-card h3 {
  font-size: 1.05rem; color: var(--vs-navy); margin-bottom: 12px;
}
.app-card ul { padding-left: 18px; }
.app-card li {
  color: var(--vs-gray); font-size: .9rem; line-height: 1.5; margin-bottom: 4px;
}
.app-card p { color: var(--vs-gray); font-size: .93rem; }
.app-card a { color: var(--vs-blue); font-weight: 500; }
