@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0a0c0f;
  --bg2:      #111418;
  --bg3:      #181c22;
  --border:   #1e2530;
  --border2:  #2a3340;
  --cyan:     #00c8e0;
  --cyan-dim: #007a8a;
  --cyan-glow:#00c8e033;
  --text:     #e8edf2;
  --muted:    #7a8a9a;
  --faint:    #3a4a5a;
  --white:    #ffffff;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius:   10px;
  --radius-lg:16px;
  --max:      960px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.site { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,12,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 12px;
  overflow: hidden;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
  background: var(--cyan-glow);
}

.nav-cta {
  background: var(--cyan);
  color: var(--bg);
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity 0.2s;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover { opacity: 0.85; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  padding: 80px 0 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cyan);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: 54px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  color: var(--white);
}

.hero h1 span { color: var(--cyan); }

.hero-intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity 0.2s;
  display: inline-block;
  letter-spacing: 0.3px;
}

.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  color: var(--cyan);
  border: 1px solid var(--cyan-dim);
  background: transparent;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--cyan-glow);
  border-color: var(--cyan);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.hero-stat { padding: 16px 0; border-bottom: 1px solid var(--border); }
.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat:first-child { padding-top: 0; }

.hero-stat .num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat .label {
  font-size: 13px;
  color: var(--muted);
}

/* ─── CLIENTS STRIP ─── */
.clients {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.clients-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}

.client-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.client-tag {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}

.client-tag:hover {
  border-color: var(--cyan-dim);
  color: var(--cyan);
}

/* ─── SECTION HEADER ─── */
.section-header { margin-bottom: 48px; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--cyan);
}

.section-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.section-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  line-height: 1.8;
}

/* ─── PAGE SECTIONS ─── */
.page-section { padding: 80px 0; }
.page-section + .page-section { border-top: 1px solid var(--border); }

/* ─── CARDS ─── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: var(--cyan-dim);
  box-shadow: 0 0 24px var(--cyan-glow);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--cyan-glow);
  border: 1px solid var(--cyan-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 500;
  margin-top: 16px;
  transition: gap 0.2s;
}

.card-link:hover { gap: 10px; }
.card-link::after { content: '→'; }

/* ─── GRID LAYOUTS ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ─── PRICING ─── */
.pricing-strip {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  position: relative;
  overflow: hidden;
}

.pricing-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.pricing-strip h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.pricing-items { display: flex; gap: 48px; flex-wrap: wrap; align-items: flex-start; }

.pricing-item { font-size: 13px; color: var(--muted); }

.pricing-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 4px;
  line-height: 1;
}

/* ─── TESTIMONIALS ─── */
.testimonial {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
}

.testimonial:hover { border-color: var(--cyan-dim); }

.stars { color: var(--cyan); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }

.testimonial blockquote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  opacity: 0.85;
}

.testimonial-author { font-size: 13px; font-weight: 600; color: var(--cyan); }
.testimonial-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-contact-item {
  color: var(--muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.cta-contact-item:hover { color: var(--cyan); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.page-hero p {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  line-height: 1.8;
}

/* ─── DETAIL BLOCKS ─── */
.detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.detail-block.reverse { direction: rtl; }
.detail-block.reverse > * { direction: ltr; }

.detail-content h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.detail-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.detail-content ul {
  list-style: none;
  margin: 16px 0;
}

.detail-content ul li {
  color: var(--muted);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-content ul li::before {
  content: '›';
  color: var(--cyan);
  font-size: 18px;
  flex-shrink: 0;
}

.detail-aside {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.detail-aside::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.detail-aside h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.detail-aside p, .detail-aside li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan-dim);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.about-avatar {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-avatar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.avatar-circle {
  width: 100px;
  height: 100px;
  background: var(--cyan-glow);
  border: 2px solid var(--cyan-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--cyan);
  margin: 0 auto 16px;
}

.about-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.about-title { font-size: 13px; color: var(--cyan); margin-bottom: 16px; }

.about-contact-item {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  transition: color 0.2s;
}

.about-contact-item:hover { color: var(--cyan); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: 80px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img { height: 52px; margin-bottom: 16px; }

.footer-brand p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  max-width: 220px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--faint);
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 52px 0 44px; gap: 36px; }
  .hero h1 { font-size: 40px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .detail-block, .contact-grid, .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .detail-block.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .pricing-items { gap: 24px; }
  .cta-banner { padding: 40px 28px; }
  .cta-banner h2 { font-size: 28px; }
  .section-title { font-size: 30px; }
}
