/* Dosina Solutions — Advanced Modern Theme */

:root {
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-muted: #F1F5F9;
  --text: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --accent: #0891B2;
  --gradient: linear-gradient(135deg, #2563EB 0%, #0891B2 100%);
  --gradient-soft: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(8,145,178,0.08) 100%);
  --border: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 12px 40px rgba(37, 99, 235, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --header-h: 80px;
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; font-size: 15px; font-weight: 600; border-radius: var(--radius);
  border: none; cursor: pointer; transition: var(--ease); font-family: inherit;
}
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--primary { background: var(--gradient); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(37,99,235,0.35); }
.btn--ghost { background: #fff; color: var(--text); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--white { background: #fff; color: var(--primary); box-shadow: var(--shadow-md); }
.btn--white:hover { transform: translateY(-2px); }
.btn--outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn--full { width: 100%; }

/* Section Headers */
.section__header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__tag {
  display: inline-block; padding: 6px 16px; margin-bottom: 16px;
  background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.15);
  border-radius: 100px; font-size: 12px; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.section__title {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em;
}
.section__desc { font-size: 17px; color: var(--text-secondary); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 1000; height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid transparent; transition: var(--ease);
}
@media (min-width: 769px) {
  .header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}
.header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 16px;
}
.nav__logo:hover { opacity: 0.9; }
.logo-img {
  display: block;
  object-fit: contain;
  object-position: left center;
}
.logo-img--nav {
  height: 64px;
  width: auto;
  min-width: 80px;
  max-height: 64px;
}
.logo-img--footer {
  height: 140px;
  width: auto;
  max-width: 200px;
  margin-bottom: 0;
}
.footer__logo-link {
  display: inline-block;
  line-height: 0;
  background: #FFFFFF;
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.footer__logo-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.footer__legal {
  color: #CBD5E1;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}
.nav__menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--text-secondary);
  border-radius: 8px; transition: var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--primary); background: rgba(37,99,235,0.06); }
.nav__link--cta { background: var(--gradient) !important; color: #fff !important; margin-left: 8px; }
.nav__link--cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--ease); }

@media (min-width: 769px) {
  .nav-backdrop { display: none !important; }
  .nav__toggle { display: none !important; }
}

/* Hero */
.hero {
  position: relative; padding: 48px 0 0; overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero__orb--1 { width: 500px; height: 500px; background: rgba(37,99,235,0.1); top: -150px; right: -100px; }
.hero__orb--2 { width: 400px; height: 400px; background: rgba(8,145,178,0.08); bottom: 0; left: -100px; }
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  position: relative; z-index: 1; padding-bottom: 48px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: #fff; border: 1px solid var(--border); border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.pulse-dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero__title {
  font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.03em;
}
.hero__subtitle { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.7; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__trust { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero__trust-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hero__trust-chips span {
  display: inline-flex; align-items: center; padding: 6px 12px; border-radius: 100px;
  background: #fff; border: 1px solid var(--border); font-size: 13px; font-weight: 600; color: var(--text-secondary);
}
.hero__trust p { font-size: 14px; color: var(--text-secondary); margin: 0; }

.hero__visual { position: relative; }
.hero__image-main {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.hero__image-main > img { width: 100%; height: 420px; object-fit: cover; }
.hero__float {
  position: absolute; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid var(--border);
  animation: float 4s ease-in-out infinite;
}
.hero__float-icon { font-size: 24px; }
.hero__float strong { display: block; font-size: 13px; color: var(--text); }
.hero__float span { font-size: 11px; color: var(--text-muted); }
.hero__float--1 { top: 12%; left: -20px; animation-delay: 0s; }
.hero__float--2 { top: 45%; right: -24px; animation-delay: 1s; }
.hero__float--3 { bottom: 12%; left: 8%; animation-delay: 2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hero__stats-bar {
  background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 32px 0; position: relative; z-index: 1;
}
.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item__num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.stat-item__num--text { font-size: 2rem; letter-spacing: -0.02em; }
.stat-item__plus { font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.stat-item__label { display: block; font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* Marquee */
.marquee-section { padding: 20px 0; background: var(--bg-soft); border-bottom: 1px solid var(--border); overflow: hidden; }
.marquee { overflow: hidden; }
.marquee__track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* Services */
.services { background: var(--bg-soft); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: var(--ease); box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.2); }
.service-card:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.service-card__img { height: 180px; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__body { padding: 24px; }
.service-card__body h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.service-card__body p { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
.service-card__body ul { display: flex; flex-wrap: wrap; gap: 8px; }
.service-card__body li {
  font-size: 12px; font-weight: 600; padding: 4px 10px; background: var(--bg-muted);
  border-radius: 100px; color: var(--primary);
}
.service-card__cta {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 16px;
  font-size: 13px; font-weight: 700; color: var(--primary);
}
.service-card:hover .service-card__cta { text-decoration: underline; }

/* Industries */
.industries__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,0.25);
}
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.industry-card:hover img { transform: scale(1.08); }
.industry-card:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.industry-card__overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.15) 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: #fff;
  transition: background 0.25s ease;
}
.industry-card:hover .industry-card__overlay {
  background: linear-gradient(to top, rgba(37,99,235,0.92) 0%, rgba(15,23,42,0.35) 60%);
}
.industry-card__overlay h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.industry-card__overlay p { font-size: 12px; opacity: 0.9; }
.industry-card__cta {
  display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.02em; opacity: 0; transform: translateY(8px); transition: var(--ease);
}
.industry-card:hover .industry-card__cta { opacity: 1; transform: translateY(0); }
.industries__note { text-align: center; margin-top: 32px; font-size: 16px; color: var(--text-secondary); }
.industries__note a { color: var(--primary); font-weight: 600; }

/* Portfolio */
.portfolio { background: var(--bg-soft); }
.portfolio__filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 22px; border-radius: 100px; border: 1px solid var(--border);
  background: #fff; font-size: 14px; font-weight: 600; color: var(--text-secondary);
  cursor: pointer; transition: var(--ease); font-family: inherit;
}
.filter-btn:hover, .filter-btn.active { background: var(--gradient); color: #fff; border-color: transparent; }
.portfolio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: var(--ease); box-shadow: var(--shadow-sm);
}
.portfolio-card.hidden { display: none; }
.portfolio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.portfolio-card:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.portfolio-card__img { position: relative; height: 220px; overflow: hidden; }
.portfolio-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-card:hover .portfolio-card__img img { transform: scale(1.05); }
.portfolio-card__hover {
  position: absolute; inset: 0; background: rgba(37,99,235,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--ease);
}
.portfolio-card__hover span { color: #fff; font-weight: 700; font-size: 15px; }
.portfolio-card:hover .portfolio-card__hover { opacity: 1; }
.portfolio-card__img--brand {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
  min-height: 220px; padding: 32px;
}
.portfolio-card__img--brand img { width: min(240px, 80%); height: auto; object-fit: contain; }
.portfolio-card__img--admin {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
  min-height: 220px;
}
.portfolio-card__mock {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 24px; width: 100%;
}
.portfolio-card__mock span {
  padding: 14px 8px; border-radius: 10px; background: rgba(255,255,255,0.14);
  color: #fff; font-size: 12px; font-weight: 700; text-align: center; border: 1px solid rgba(255,255,255,0.2);
}
.portfolio-card--brand { border-color: rgba(37,99,235,0.25); box-shadow: 0 8px 30px rgba(37,99,235,0.08); }
.portfolio-card__info { padding: 20px; }
.portfolio-card__tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--primary); margin-bottom: 8px; display: inline-block;
}
.portfolio-card__info h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.portfolio-card__info p { font-size: 13px; color: var(--text-secondary); }

/* Technology Section */
.tech-section { background: #fff; }
.tech-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.tech-section__visual { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.tech-section__visual img { width: 100%; height: 400px; object-fit: cover; }
.tech-section__badge {
  position: absolute; top: 20px; left: 20px; padding: 10px 18px;
  background: rgba(255,255,255,0.95); border-radius: 100px; font-weight: 700;
  font-size: 14px; box-shadow: var(--shadow-md);
}
.tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.tech-item {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; transition: var(--ease);
}
.tech-item:hover { border-color: var(--primary); background: #fff; }
.tech-item span { font-size: 20px; }

/* Why Us */
.why-us { background: var(--bg-soft); }
.why-us__layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.features-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.feature-row { display: flex; gap: 16px; align-items: flex-start; }
.feature-row__icon {
  width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: var(--radius); border: 1px solid var(--border); font-size: 22px;
}
.feature-row h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.feature-row p { font-size: 14px; color: var(--text-secondary); }

.highlight-card {
  position: relative; padding: 36px; background: #fff; border-radius: var(--radius-xl);
  border: 2px solid var(--primary); box-shadow: var(--shadow-blue);
}
.highlight-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 6px 20px; background: var(--gradient); color: #fff; border-radius: 100px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; white-space: nowrap;
}
.highlight-card__header { text-align: center; margin-bottom: 28px; padding-top: 8px; }
.highlight-card__header h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; margin-bottom: 8px; }
.highlight-card__header p { font-size: 14px; color: var(--text-secondary); }
.highlight-card__list { margin-bottom: 24px; }
.highlight-card__list li { padding: 10px 0; font-size: 15px; color: var(--text-secondary); border-bottom: 1px solid var(--border); }

/* Testimonials */
.testimonials { background: #fff; }
.testimonials__wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.testimonial-slider { width: 100%; }
.testimonial-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-xl);
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  padding: 36px 40px;
  background: var(--bg-soft);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-sizing: border-box;
}
.testimonial-card__stars { color: #F59E0B; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.testimonial-card__icon { font-size: 2rem; margin-bottom: 12px; line-height: 1; }
.testimonial-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 12px; color: var(--text);
}
.testimonial-card p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.testimonial-card__author {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-card__author strong { display: block; font-size: 15px; color: var(--text); }
.testimonial-card__author span { font-size: 13px; color: var(--text-muted); }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.testimonial-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; cursor: pointer; font-size: 18px; transition: var(--ease);
}
.testimonial-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.testimonial-dots {
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
  max-width: 220px;
}
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none;
  cursor: pointer; padding: 0; transition: var(--ease);
}
.testimonial-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* Process */
.process { background: var(--bg-soft); }
.process__timeline { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.process-item {
  display: flex; gap: 24px; padding: 28px 0; border-left: 2px solid var(--border);
  margin-left: 24px; padding-left: 32px; position: relative;
}
.process-item:last-child { border-left-color: transparent; }
.process-item__num {
  position: absolute; left: -25px; width: 48px; height: 48px;
  background: var(--gradient); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  box-shadow: var(--shadow-blue);
}
.process-item__content h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.process-item__content p { font-size: 14px; color: var(--text-secondary); }

/* CTA */
.cta-banner {
  padding: 80px 0; background: var(--gradient); color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner__inner { position: relative; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 12px; }
.cta-banner p { font-size: 17px; opacity: 0.9; margin-bottom: 28px; }
.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact__lead { color: var(--text-secondary); line-height: 1.7; margin: 16px 0 24px; max-width: 480px; }
.contact__list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 0 0 24px; padding: 0; }
.contact__list li { font-size: 15px; line-height: 1.6; color: var(--text-secondary); }
.contact__list strong, .contact__list a { color: var(--text); }
.contact__list a:hover { color: var(--primary); }
.contact__list-label {
  display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px;
}
.contact__map-link {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--primary);
}
.contact__map-link:hover { text-decoration: underline; }
.contact__cta-card {
  padding: 36px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
}
.contact__cta-card h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  margin: 12px 0 10px;
}
.contact__cta-card p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.contact__cta-list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.contact__cta-list li { font-size: 14px; font-weight: 600; color: var(--text-secondary); }

/* Inquiry Modal */
.inquiry-modal {
  position: fixed; inset: 0; z-index: 10050;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.inquiry-modal.is-open { opacity: 1; visibility: visible; }
.inquiry-modal__backdrop {
  position: absolute; inset: 0; background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}
.inquiry-modal__dialog {
  position: relative; width: 100%; max-width: 560px; max-height: 92vh;
  overflow-y: auto; background: #fff; border-radius: var(--radius-xl);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.25);
  padding: 28px 28px 32px; transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}
.inquiry-modal.is-open .inquiry-modal__dialog { transform: translateY(0) scale(1); }
.inquiry-modal__close {
  position: absolute; top: 14px; right: 14px; width: 40px; height: 40px;
  border: none; border-radius: 50%; background: var(--bg-soft);
  color: var(--text-secondary); font-size: 24px; line-height: 1;
  cursor: pointer; transition: var(--ease);
}
.inquiry-modal__close:hover { background: #E2E8F0; color: var(--text); }
.inquiry-modal__head { margin-bottom: 20px; padding-right: 36px; }
.inquiry-modal__head h2 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  margin: 10px 0 8px; line-height: 1.2;
}
.inquiry-modal__sub { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.contact__form--modal {
  padding: 0; background: transparent; border: none; box-shadow: none;
}
.inquiry-modal__success {
  text-align: center; padding: 12px 8px 4px;
}
.inquiry-modal__success[hidden] { display: none !important; }
.inquiry-success__icon {
  width: 80px; height: 80px; margin: 0 auto 28px; border-radius: 50%;
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  color: #059669; font-size: 40px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.15);
}
.inquiry-modal__success h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800; color: var(--text); margin-bottom: 16px; line-height: 1.2;
}
.inquiry-modal__success p {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem); line-height: 1.7;
  color: var(--text-secondary); margin: 0 0 28px; font-weight: 500;
}
.logo-img--svg { width: auto; height: 52px; max-width: 200px; }
.footer .logo-img--svg { height: 72px; background: #fff; padding: 10px 14px; border-radius: 12px; }
.contact__quick { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.contact__quick-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius); font-weight: 600; font-size: 15px;
  background: #25D366; color: #fff; transition: var(--ease);
}
.contact__quick-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.contact__quick-btn--outline { background: #fff; color: var(--text); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.contact__quick-btn--outline:hover { border-color: var(--primary); color: var(--primary); box-shadow: none; }
.contact__form {
  padding: 36px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact__form--highlight {
  border-color: rgba(37,99,235,0.45);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12), var(--shadow-md);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text-secondary); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); font-size: 15px; font-family: inherit; transition: var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group textarea { resize: vertical; min-height: 110px; }

/* Footer */
.footer { background: var(--text); color: #94A3B8; padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__badge {
  display: inline-block; padding: 4px 12px; background: rgba(37,99,235,0.2);
  color: #93C5FD; border-radius: 100px; font-size: 12px; font-weight: 600; margin-bottom: 12px;
}
.footer__meta { font-size: 13px; margin-bottom: 6px; line-height: 1.6; }
.footer__meta a { color: #CBD5E1; }
.footer__meta a:hover { color: #fff; }
.footer__col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { font-size: 14px; transition: var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; background: #25D366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45); transition: var(--ease);
  animation: waPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes waPulse { 0%,100%{box-shadow:0 8px 24px rgba(37,211,102,0.45)} 50%{box-shadow:0 8px 32px rgba(37,211,102,0.7)} }

/* SEO Content */
.seo-content { background: #fff; }
.seo-content__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.seo-content__block {
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.seo-content__block h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.seo-content__block p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 15px;
  margin: 0;
}
.footer__seo-text {
  color: #CBD5E1;
  font-size: 13px;
  line-height: 1.6;
  margin: 8px 0 12px;
  max-width: 280px;
}

/* FAQ */
.faq { background: var(--bg-soft); }
.faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--ease);
}
.faq__item[open] { border-color: rgba(37, 99, 235, 0.25); box-shadow: var(--shadow-sm); }
.faq__item summary {
  padding: 18px 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item[open] summary { color: var(--primary); }
.faq__answer {
  padding: 0 20px 18px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 15px;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; max-width: 560px; margin: 0 auto; width: 100%; }
  .hero__image-main > img { height: 300px; }
  .hero__float--1 { left: 8px; top: 8%; }
  .hero__float--2 { right: 8px; }
  .hero__float--3 { left: 8px; bottom: 8%; }
  .services__grid, .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .tech-section__grid, .why-us__layout, .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .seo-content__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }

  .section { padding: 64px 0; }
  .container { padding: 0 16px; }

  /* Header & Mobile Nav */
  .header {
    z-index: 1200;
    background: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 1203;
  }
  .nav__menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100dvh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    z-index: 1202;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 12px 16px 28px;
    margin: 0;
    background: #fff;
    gap: 4px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    box-shadow: none;
    border-top: 1px solid var(--border);
  }
  .nav__menu.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__menu li { width: 100%; }
  .nav__link {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
  }
  .nav__link--cta {
    margin: 8px 0 0;
    text-align: center;
    padding: 16px;
    font-size: 16px;
  }
  .nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    z-index: 1199;
    background: rgba(15, 23, 42, 0.4);
  }
  .nav-backdrop.is-visible { display: block; }

  /* Hero */
  .hero { padding-top: 20px; }
  .hero__grid { gap: 28px; padding-bottom: 28px; }
  .hero__title { font-size: clamp(1.65rem, 7.5vw, 2.1rem); margin-bottom: 16px; }
  .hero__subtitle { font-size: 15px; margin-bottom: 24px; max-width: none; }
  .hero__badge { font-size: 11px; padding: 6px 12px; margin-bottom: 16px; }
  .hero__actions { margin-bottom: 24px; }
  .hero__trust-chips span { font-size: 12px; }
  .hero__visual { max-width: 100%; }
  .hero__image-main > img { height: 220px; }
  .hero__float { display: none; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero__stats-bar { padding: 24px 0; }
  .stat-item__num { font-size: 2rem; }
  .stat-item__num--text { font-size: 1.65rem; }

  /* Grids */
  .services__grid, .portfolio__grid, .industries__grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px; }
  .testimonial-card p { font-size: 15px; }
  .testimonial-card h3 { font-size: 1.05rem; }

  /* Contact & Modal */
  .contact__cta-card { padding: 24px; }
  .inquiry-modal { padding: 12px; align-items: flex-end; }
  .inquiry-modal__dialog {
    max-height: 94vh;
    padding: 22px 18px 24px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  /* Footer & Logo */
  .logo-img--nav { height: 48px; min-width: 64px; }
  .logo-img--footer { height: 100px; max-width: 160px; }
  .footer__logo-link { padding: 10px 14px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Buttons */
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .cta-banner__actions { flex-direction: column; align-items: stretch; }
  .cta-banner__actions .btn { width: 100%; }

  /* WhatsApp */
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .section__title { font-size: 1.65rem; }
  .section__desc { font-size: 15px; }
  .tech-grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .marquee span { font-size: 13px; }
  .filter-btn { padding: 8px 16px; font-size: 13px; }
  .portfolio__filters { gap: 8px; }
}
