/* ================================================================
   ARC TECHNOSOFT — COMPLETE THEME
   Colors: #169ff5 (Blue), #213245 (Dark Navy), #ffffff (White)
   Font: Poppins (headings) + Open Sans (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────── */
:root {
  --blue:        #169ff5;
  --blue-dark:   #0e85d3;
  --blue-light:  #e8f6fe;
  --blue-mid:    #52b8f7;
  --navy:        #213245;
  --navy-dark:   #172435;
  --navy-mid:    #2d4460;
  --navy-light:  #3a5a7a;
  --white:       #ffffff;
  --off-white:   #f4f8fc;
  --light-gray:  #eef2f7;
  --border:      #d8e8f5;
  --text-dark:   #213245;
  --text-mid:    #4a6380;
  --text-light:  #7a9ab5;
  --shadow:      0 8px 30px rgba(22,159,245,0.12);
  --shadow-card: 0 4px 20px rgba(33,50,69,0.08);
  --radius:      8px;
  --radius-lg:   16px;
  --t:           0.3s ease;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t); }
ul { list-style: none; }
::selection { background: var(--blue); color: var(--white); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── Typography ─────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; color: var(--navy); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem,4.5vw,3.2rem); }
h2 { font-size: clamp(1.6rem,3vw,2.4rem); }
h3 { font-size: clamp(1.2rem,2vw,1.6rem); }
h4 { font-size: 1.15rem; }
p  { line-height: 1.8; color: var(--text-mid); font-size: 0.9375rem; }

/* ── Utilities ──────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-blue   { color: var(--blue) !important; }
.text-white  { color: var(--white) !important; }
.bg-blue     { background: var(--blue); }
.bg-navy     { background: var(--navy); }
.bg-white    { background: var(--white); }
.bg-light    { background: var(--off-white); }

/* ── Section Title ──────────────────────────────────── */
.section-title { margin-bottom: 56px; }
.section-title.center { text-align: center; }
.section-title .label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 12px;
}
.section-title .label::before,
.section-title .label::after {
  content: ''; width: 30px; height: 2px; background: var(--blue); border-radius: 2px;
}
.section-title.center .label { justify-content: center; }
.section-title h2 { margin-bottom: 16px; }
.section-title p { max-width: 560px; font-size: 1rem; }
.section-title.center p { margin: 0 auto; }

/* Blue underline for h2 */
.section-title h2 span { position: relative; }
.section-title h2 span::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  border-radius: 2px;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; border-radius: 50px; font-family: 'Poppins', sans-serif;
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em;
  border: 2px solid transparent; cursor: pointer; transition: all var(--t);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: var(--white); border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(22,159,245,0.3);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(22,159,245,0.4); }
.btn-outline {
  background: transparent; color: var(--blue); border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white); color: var(--blue); border-color: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn i { font-size: 0.85rem; }
.btn-sm { padding: 9px 22px; font-size: 0.8125rem; }

/* ── NAVIGATION ─────────────────────────────────────── */
.nav-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all var(--t); }

.topbar {
  background: var(--navy); padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.65);
}
.topbar-contacts { display: flex; gap: 24px; }
.topbar-contacts a {
  display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.65); transition: color var(--t);
}
.topbar-contacts a:hover { color: var(--blue); }
.topbar-contacts i { color: var(--blue); font-size: 0.7rem; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.65rem; transition: all var(--t);
}
.topbar-social a:hover { background: var(--blue); color: var(--white); }

.navbar {
  background: var(--white); padding: 0;
  box-shadow: 0 2px 20px rgba(33,50,69,0.12);
  border-bottom: 2px solid var(--blue);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.navbar-logo img, .nav-logo-img { height: 50px; width: auto; max-width: 160px; object-fit: contain; display: block; }
.navbar-logo-text {
  font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800;
  color: var(--navy); display: none;
  letter-spacing: -0.02em;
}
.navbar-logo-text span { color: var(--blue); }

.navbar-menu { display: flex; align-items: center; gap: 6px; }
.navbar-menu li a {
  display: block; padding: 8px 16px; font-family: 'Poppins', sans-serif;
  font-size: 0.85rem; font-weight: 500; color: var(--text-dark);
  border-radius: 6px; position: relative; transition: all var(--t);
}
.navbar-menu li a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--blue); border-radius: 2px;
  transition: all var(--t);
}
.navbar-menu li a:hover,
.navbar-menu li a.active { color: var(--blue); }
.navbar-menu li a:hover::after,
.navbar-menu li a.active::after { left: 16px; right: 16px; }

.navbar-menu .nav-cta a {
  background: var(--blue); color: var(--white); border-radius: 50px;
  padding: 9px 22px; box-shadow: 0 4px 15px rgba(22,159,245,0.3);
}
.navbar-menu .nav-cta a::after { display: none; }
.navbar-menu .nav-cta a:hover { background: var(--blue-dark); color: var(--white); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  min-width: 180px; background: var(--white); border-radius: var(--radius);
  box-shadow: 0 15px 40px rgba(33,50,69,0.15); padding: 8px 0;
  opacity: 0; pointer-events: none; transition: all var(--t);
  transform: translateX(-50%) translateY(8px);
  border-top: 3px solid var(--blue);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 9px 18px; font-size: 0.85rem; color: var(--text-mid);
  border-radius: 0; transition: all var(--t);
}
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover { color: var(--blue); background: var(--blue-light); padding-left: 24px; }

/* Scrolled nav */
.nav-wrap.scrolled .topbar { display: none; }
.nav-wrap.scrolled .navbar { box-shadow: 0 4px 25px rgba(33,50,69,0.12); }

/* Mobile nav */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--t); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4px); }

.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,50,69,0.97); z-index: 9999; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; opacity: 0;
  transition: opacity var(--t); pointer-events: none;
}
.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 600;
  color: rgba(255,255,255,0.7); transition: color var(--t);
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .close-nav {
  position: absolute; top: 24px; right: 24px; background: none; border: none;
  color: rgba(255,255,255,0.5); font-size: 1.5rem; cursor: pointer; transition: color var(--t);
}
.mobile-nav .close-nav:hover { color: var(--blue); }

@media (max-width: 1024px) {
  .navbar-menu { display: none; }
  .nav-toggle { display: flex; }
  .topbar { display: none; }
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding-top: 104px; /* topbar 36px + navbar 68px */
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, #1a3a5c 100%);
}
/* Animated circles */
.hero-circle {
  position: absolute; border-radius: 50%;
  background: rgba(22,159,245,0.06); animation: floatCircle 8s ease-in-out infinite;
}
.hero-circle-1 { width: 500px; height: 500px; top: -150px; right: -100px; animation-delay: 0s; }
.hero-circle-2 { width: 350px; height: 350px; bottom: -80px; left: -80px; animation-delay: 3s; background: rgba(22,159,245,0.04); }
.hero-circle-3 { width: 200px; height: 200px; top: 40%; right: 25%; animation-delay: 5s; }
@keyframes floatCircle {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px,-20px) scale(1.05); }
}
/* Dots pattern */
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(22,159,245,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content { position: relative; z-index: 2; }
.hero-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(22,159,245,0.15);
  border: 1px solid rgba(22,159,245,0.3); border-radius: 50px; padding: 6px 18px;
  font-size: 0.8rem; font-weight: 600; color: var(--blue); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-tag i { font-size: 0.65rem; }
.hero h1 { color: var(--white); font-size: clamp(2.2rem,4.5vw,3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 24px; }
.hero h1 span { color: var(--blue); }
.hero-desc { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.8; margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat-num {
  font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1;
}
.hero-stat-num span { color: var(--blue); }
.hero-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }

/* Hero image side */
.hero-img-wrap { position: relative; }
.hero-img-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative;
}
.hero-img-card img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hero-img-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22,159,245,0.2) 0%, transparent 60%);
  z-index: 1;
}
/* Floating badge */
.hero-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--white); border-radius: 16px; padding: 18px 22px;
  box-shadow: 0 10px 30px rgba(33,50,69,0.2); z-index: 2;
}
.hero-badge-num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--blue); line-height: 1; }
.hero-badge-lbl { font-size: 0.75rem; color: var(--text-mid); font-weight: 600; }
.hero-badge-2 {
  position: absolute; top: 30px; right: -20px;
  background: var(--blue); border-radius: 12px; padding: 14px 18px;
  box-shadow: 0 8px 25px rgba(22,159,245,0.4); z-index: 2; text-align: center;
}
.hero-badge-2 i { font-size: 1.4rem; color: var(--white); display: block; margin-bottom: 4px; }
.hero-badge-2 span { font-size: 0.7rem; color: rgba(255,255,255,0.85); font-weight: 600; }
/* Scroll indicator */
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; text-align: center; }
.hero-scroll span { font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-bottom: 8px; }
.hero-scroll-line {
  width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(22,159,245,0.8), transparent);
  margin: 0 auto; animation: scrollDown 1.5s ease infinite;
}
@keyframes scrollDown { 0%,100%{transform:scaleY(1) translateY(0);opacity:.8} 50%{transform:scaleY(.8) translateY(6px);opacity:1} }

@media (max-width: 900px) {
  .hero-cols { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { display: none; }
  .hero { min-height: auto; padding: 120px 0 70px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-badge, .hero-badge-2 { display: none; }
}

/* ── TICKER / MARQUEE ───────────────────────────────── */
.ticker { background: var(--blue); padding: 12px 0; overflow: hidden; }
.ticker-track { display: flex; animation: ticker 35s linear infinite; white-space: nowrap; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 32px; padding: 0 40px;
  font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white);
}
.ticker-dot { width: 5px; height: 5px; background: rgba(255,255,255,0.4); border-radius: 50%; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SERVICES ───────────────────────────────────────── */
.services { background: var(--off-white); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  box-shadow: var(--shadow-card); transition: all var(--t); position: relative; overflow: hidden;
  border: 1px solid transparent;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(22,159,245,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; background: var(--blue-light);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 1.4rem; color: var(--blue); transition: all var(--t);
}
.service-card:hover .service-icon { background: var(--blue); color: var(--white); }
.service-num {
  position: absolute; top: 24px; right: 24px;
  font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 800;
  color: rgba(22,159,245,0.06); line-height: 1;
}
.service-card h4 { margin-bottom: 12px; color: var(--navy); font-size: 1.05rem; }
.service-card p { font-size: 0.875rem; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; font-weight: 600; color: var(--blue); font-family: 'Poppins', sans-serif;
}
.service-link i { transition: transform var(--t); font-size: 0.7rem; }
.service-card:hover .service-link i { transform: translateX(4px); }

@media(max-width:900px){ .service-grid{grid-template-columns:1fr 1fr} }
@media(max-width:600px){ .service-grid{grid-template-columns:1fr} }

/* ── ABOUT ──────────────────────────────────────────── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 200px; border-radius: var(--radius-lg); overflow: hidden;
  border: 4px solid var(--white); box-shadow: var(--shadow-card);
}
.about-img-accent img { width: 100%; height: 160px; object-fit: cover; }
.about-exp-badge {
  position: absolute; top: 24px; left: -24px;
  background: var(--blue); border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(22,159,245,0.4); text-align: center; color: var(--white);
}
.about-exp-num { font-family:'Poppins',sans-serif; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about-exp-lbl { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; opacity: 0.85; }
.about-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9375rem; color: var(--text-mid); line-height: 1.7;
}
.about-list li::before {
  content: ''; flex-shrink: 0; width: 20px; height: 20px;
  background: var(--blue-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23169ff5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
  margin-top: 2px;
}
.about-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
@media(max-width:900px){ .about-grid{grid-template-columns:1fr} .about-img-accent,.about-exp-badge{display:none} }

/* ── STATS BAR ──────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 20px; position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 15%; height: 70%; width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-num {
  font-family: 'Poppins', sans-serif; font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 800; color: var(--blue); line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat-num sup { font-size: 1.2rem; color: rgba(22,159,245,0.7); }
.stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; font-weight: 500; }
@media(max-width:600px){ .stats-grid{grid-template-columns:1fr 1fr} .stat-item+.stat-item::before{display:none} }

/* ── PRICING ────────────────────────────────────────── */
.pricing { background: var(--off-white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: start; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); transition: all var(--t);
  border: 2px solid transparent;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pricing-card.featured { border-color: var(--blue); transform: scale(1.04); box-shadow: var(--shadow); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-head { padding: 32px 28px; border-bottom: 1px solid var(--light-gray); }
.pricing-featured-tag { background: var(--blue); color: var(--white); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 14px; border-radius: 50px; display: inline-block; margin-bottom: 14px; }
.pricing-plan { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.pricing-price { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 8px; }
.pricing-cur { font-family: 'Poppins',sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-top: 6px; }
.pricing-amount { font-family: 'Poppins',sans-serif; font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-period { font-size: 0.8rem; color: var(--text-light); align-self: flex-end; margin-bottom: 4px; }
.pricing-desc { font-size: 0.85rem; color: var(--text-light); }
.pricing-body { padding: 28px; }
.pricing-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-mid); }
.pricing-features li i { color: var(--blue); font-size: 0.75rem; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }
@media(max-width:900px){ .pricing-grid{grid-template-columns:1fr} .pricing-card.featured{transform:none} }

/* ── TEAM ───────────────────────────────────────────── */
.team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.team-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow-card); transition: all var(--t); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-img { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s; filter: grayscale(20%); }
.team-card:hover .team-img img { transform: scale(1.05); filter: grayscale(0%); }
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,159,245,0.95) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  opacity: 0; transition: opacity var(--t);
}
.team-card:hover .team-overlay { opacity: 1; }
.team-role { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 4px; }
.team-name-overlay { font-family: 'Poppins',sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.team-socials { display: flex; gap: 8px; }
.team-socials a { width: 30px; height: 30px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.7rem; transition: background var(--t); }
.team-socials a:hover { background: var(--white); color: var(--blue); }
.team-info { padding: 18px 20px; }
.team-info h5 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.team-info p { font-size: 0.8rem; color: var(--blue); font-weight: 600; margin: 0; }
@media(max-width:900px){ .team-grid{grid-template-columns:1fr 1fr} }
@media(max-width:500px){ .team-grid{grid-template-columns:1fr} }

/* ── BLOG ───────────────────────────────────────────── */
.blog { background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: all var(--t); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-img { overflow: hidden; aspect-ratio: 16/10; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-cat {
  display: inline-block; background: var(--blue); color: var(--white); font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px;
  border-radius: 4px; margin-bottom: 12px;
}
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.78rem; color: var(--text-light); margin-bottom: 10px; font-family: 'Poppins',sans-serif; }
.blog-meta i { color: var(--blue); font-size: 0.65rem; margin-right: 3px; }
.blog-body h4 { font-size: 1rem; line-height: 1.5; margin-bottom: 10px; transition: color var(--t); }
.blog-card:hover h4 { color: var(--blue); }
.blog-body p { font-size: 0.85rem; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--blue); font-family: 'Poppins',sans-serif; }
.blog-read i { transition: transform var(--t); font-size: 0.65rem; }
.blog-card:hover .blog-read i { transform: translateX(4px); }
@media(max-width:900px){ .blog-grid{grid-template-columns:1fr 1fr} }
@media(max-width:600px){ .blog-grid{grid-template-columns:1fr} }

/* ── TESTIMONIALS ───────────────────────────────────── */
.testimonials { background: var(--navy); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all var(--t); position: relative;
}
.testi-card:hover { background: rgba(22,159,245,0.1); border-color: rgba(22,159,245,0.3); transform: translateY(-4px); }
.testi-quote { font-size: 4rem; color: var(--blue); opacity: 0.3; line-height: 0.5; margin-bottom: 20px; font-family: 'Poppins',sans-serif; font-weight: 900; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars i { color: var(--blue); font-size: 0.75rem; }
.testi-text { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(22,159,245,0.2); border: 2px solid var(--blue); display: flex; align-items: center; justify-content: center; font-family: 'Poppins',sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--blue); flex-shrink: 0; }
.testi-name { font-family: 'Poppins',sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--white); }
.testi-role { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
@media(max-width:900px){ .testi-grid{grid-template-columns:1fr 1fr} }
@media(max-width:600px){ .testi-grid{grid-template-columns:1fr} }

/* ── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.cta-banner-inner {
  position: relative; z-index: 1; display: flex;
  align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin: 0; font-size: 1rem; }
.cta-banner .btn-wrap { display: flex; gap: 14px; flex-wrap: wrap; }
@media(max-width:768px){ .cta-banner-inner{flex-direction:column;text-align:center} .cta-banner .btn-wrap{justify-content:center} }

/* ── CONTACT PAGE ───────────────────────────────────── */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-card); display: flex; gap: 18px; align-items: flex-start;
  transition: all var(--t);
}
.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.contact-card-icon {
  width: 48px; height: 48px; background: var(--blue-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--blue); flex-shrink: 0; transition: all var(--t);
}
.contact-card:hover .contact-card-icon { background: var(--blue); color: var(--white); }
.contact-card h5 { font-size: 0.9rem; margin-bottom: 6px; color: var(--navy); }
.contact-card p, .contact-card a { font-size: 0.875rem; color: var(--text-mid); display: block; line-height: 1.7; }
.contact-card a:hover { color: var(--blue); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-family: 'Poppins',sans-serif; letter-spacing: 0.04em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 18px; border: 2px solid var(--border); border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif; font-size: 0.9375rem; color: var(--text-dark);
  background: var(--off-white); outline: none; transition: all var(--t);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(22,159,245,0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; padding: 15px 32px; font-size: 0.9375rem; }

.notif {
  padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px;
  display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; line-height: 1.6;
}
.notif.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.notif.error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.notif i { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
@media(max-width:900px){ .contact-grid{grid-template-columns:1fr} .form-row{grid-template-columns:1fr} }

/* ── PAGE HERO ──────────────────────────────────────── */
.page-hero {
  background: var(--navy); padding: calc(104px + 50px) 0 56px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.page-hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(22,159,245,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
}
.page-hero-circle {
  position: absolute; border-radius: 50%;
  background: rgba(22,159,245,0.05);
}
.page-hero-circle-1 { width: 400px; height: 400px; right: -100px; top: -100px; }
.page-hero-circle-2 { width: 250px; height: 250px; left: -60px; bottom: -60px; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 20px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; list-style: none;
  font-size: 0.85rem; color: rgba(255,255,255,0.5); font-family: 'Poppins',sans-serif;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--t); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .cur { color: var(--blue); font-weight: 500; }

/* ── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--navy-dark); padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 30px;
}
.footer-logo { height: 50px; margin-bottom: 18px; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.85; max-width: 280px; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5);
  font-size: 0.75rem; transition: all var(--t); border: 1px solid rgba(255,255,255,0.06);
}
.footer-socials a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.footer-col-title {
  font-family: 'Poppins',sans-serif; font-size: 0.85rem; font-weight: 700;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer-col-title::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px;
  background: var(--blue); border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: all var(--t);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--blue); font-size: 1rem; line-height: 1; }
.footer-links a:hover { color: var(--blue); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px;
  font-size: 0.875rem; color: rgba(255,255,255,0.45);
}
.footer-contact-item i { color: var(--blue); font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.45); transition: color var(--t); }
.footer-contact-item a:hover { color: var(--blue); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-copy a { color: var(--blue); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--t); }
.footer-legal a:hover { color: var(--blue); }
@media(max-width:900px){ .footer-grid{grid-template-columns:1fr 1fr;gap:32px} }
@media(max-width:600px){ .footer-grid{grid-template-columns:1fr} .footer-bottom{flex-direction:column;text-align:center} }

/* ── BACK TO TOP ────────────────────────────────────── */
#back-top {
  position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px;
  background: var(--blue); color: var(--white); border-radius: 50%;
  display: none; align-items: center; justify-content: center; font-size: 0.85rem;
  box-shadow: 0 6px 20px rgba(22,159,245,0.4); z-index: 9000; transition: all var(--t);
  text-decoration: none;
}
#back-top.show { display: flex; }
#back-top:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* ── UTILS ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.section-sep { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* Portfolio page filter */
.filter-wrap { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 22px; border-radius: 50px; border: 2px solid var(--border);
  background: var(--white); color: var(--text-mid); font-family: 'Poppins',sans-serif;
  font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all var(--t);
}
.filter-btn:hover, .filter-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* Blog sidebar layout */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; box-shadow: var(--shadow-card); }
.widget-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); padding-bottom: 12px; border-bottom: 2px solid var(--light-gray); margin-bottom: 18px; position: relative; }
.widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: var(--blue); }
.cat-links { display: flex; flex-direction: column; gap: 10px; }
.cat-links a { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; color: var(--text-mid); transition: all var(--t); padding: 6px 0; border-bottom: 1px solid var(--light-gray); }
.cat-links a:hover { color: var(--blue); }
.cat-count { background: var(--blue-light); color: var(--blue); font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; }

@media(max-width:900px){ .blog-layout{grid-template-columns:1fr} }
