:root {
  --bg: #ecf5ff;
  --bg-soft: #f7fbff;
  --bg-accent: #e5f1ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ink: #061b42;
  --ink-soft: #0d4b98;
  --text: #17304f;
  --text-muted: #61728e;
  --line: rgba(6, 27, 66, 0.1);
  --line-strong: rgba(6, 27, 66, 0.18);
  --primary: #0b3f8a;
  --primary-strong: #072a62;
  --secondary: #1cc7f0;
  --secondary-soft: rgba(28, 199, 240, 0.14);
  --accent: #ff9d3d;
  --accent-soft: rgba(255, 157, 61, 0.18);
  --success-soft: rgba(28, 199, 240, 0.12);
  --white: #ffffff;
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --shadow-soft: 0 20px 60px rgba(6, 27, 66, 0.08);
  --shadow-strong: 0 28px 80px rgba(6, 27, 66, 0.18);
  --container: min(1120px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(28, 199, 240, 0.18), transparent 26rem),
    radial-gradient(circle at top right, rgba(255, 157, 61, 0.16), transparent 26rem),
    linear-gradient(180deg, #f7fbff 0%, #ecf5ff 100%);
  line-height: 1.6;
}


body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 999;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}


.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(241, 248, 255, 0.92));
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(28, 199, 240, 0.24), transparent 24rem),
    radial-gradient(circle at bottom left, rgba(255, 157, 61, 0.18), transparent 28rem),
    linear-gradient(135deg, #051a3b 0%, #0b3f8a 62%, #0a5ac0 100%);
}

.section-accent {
  background:
    linear-gradient(135deg, rgba(229, 241, 255, 0.96), rgba(255, 255, 255, 0.96)),
    var(--bg-accent);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.display-title,
.panel-title,
.pricing-card h3,
.project-card h3,
.skill-card h3,
.testimonial-card h3,
.contact-form h3 {
  margin: 0;
  font-family: Bahnschrift, Aptos, "Segoe UI", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.display-title {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 13ch;
}

.eyebrow,
.panel-eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.heading-on-dark .eyebrow,
.section-dark .panel-eyebrow {
  color: #92efff;
}

.section-copy,
.hero-lead,
.panel-copy,
.about-bio,
.footer-copy,
.form-note {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.heading-on-dark .section-copy,
.section-dark .panel-copy,
.section-dark .footer-copy {
  color: rgba(244, 247, 252, 0.78);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.2rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), #0d67d3 72%, var(--secondary));
  color: var(--white);
  box-shadow: 0 18px 42px rgba(11, 63, 138, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 48px rgba(11, 63, 138, 0.34);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-block {
  width: 100%;
}

.pill,
.chip,
.filter-button,
.tag,
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.pill {
  padding: 0.45rem 0.8rem;
  background: var(--accent-soft);
  color: #b66606;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(6, 27, 66, 0.08);
  background: rgba(247, 251, 255, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1rem;
  align-items: center;
  min-height: 5.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(9.75rem, 15vw, 13.5rem);
  height: auto;
}

.brand-text {
  display: grid;
  gap: 0.05rem;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 0.98rem;
  color: var(--ink);
}

.brand-text span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.site-nav ul,
.footer-nav ul,
.hero-trust,
.panel-list,
.process-mini {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav ul {
  display: flex;
  justify-content: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  color: var(--text-muted);
  font-size: 0.96rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
}

.menu-line {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.25rem auto;
  background: var(--ink);
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.hero {
  padding-top: clamp(5.5rem, 10vw, 8rem);
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(28, 199, 240, 0.18), transparent 20rem),
    radial-gradient(circle at 82% 22%, rgba(255, 157, 61, 0.16), transparent 18rem),
    radial-gradient(circle at 58% 48%, rgba(11, 63, 138, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: end;
}

.hero-copy {
  display: grid;
  gap: 1.5rem;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-trust li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(6, 27, 66, 0.08);
  color: var(--ink-soft);
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(6, 27, 66, 0.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 247, 255, 0.82));
  border: 1px solid rgba(6, 27, 66, 0.08);
  box-shadow: var(--shadow-soft);
}

.stat-value {
  display: block;
  margin-bottom: 0.3rem;
  font-family: Bahnschrift, Aptos, "Segoe UI", sans-serif;
  font-size: 1.7rem;
  color: var(--ink);
}

.stat-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-panels {
  display: grid;
  gap: 1rem;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 27, 66, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 255, 0.82));
  box-shadow: var(--shadow-soft);
}

.card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 9rem;
  height: 9rem;
  background: radial-gradient(circle, rgba(28, 199, 240, 0.14), transparent 72%);
  pointer-events: none;
}

.chip-list,
.skill-tags,
.project-tools,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip,
.tag {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(18, 23, 35, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink-soft);
}

.hero-panel-featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 255, 0.84)),
    var(--white);
}

.hero-panel-head,
.pricing-header,
.testimonial-head,
.project-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.panel-title {
  font-size: 1.8rem;
  margin-top: 0.3rem;
}

.panel-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.panel-list li,
.package-features li,
.project-copy-list li {
  position: relative;
  padding-left: 1.4rem;
}

.panel-list li::before,
.package-features li::before,
.project-copy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.process-mini {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.75rem;
}

.process-mini li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  color: var(--ink-soft);
  font-weight: 700;
}

.process-mini strong,
.process-step {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--primary);
  font-size: 0.85rem;
}

.about-grid,
.contact-grid,
.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.about-copy-block {
  display: grid;
  gap: 1.5rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 247, 255, 0.78));
  border: 1px solid rgba(6, 27, 66, 0.08);
}

.about-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-meta div {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(18, 23, 35, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.about-meta dt {
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.about-cards,
.service-grid,
.skills-grid,
.portfolio-grid,
.pricing-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.about-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.skill-card,
.pricing-card,
.project-card,
.process-card,
.testimonial-card {
  height: 100%;
}

.service-card {
  display: grid;
  gap: 1rem;
}

.service-card-icon {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(11, 63, 138, 0.14), rgba(28, 199, 240, 0.22));
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card h3,
.process-card h3,
.contact-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.about-cards h3 {
  margin: 0 0 0.5rem;
  font-family: Bahnschrift, Aptos, "Segoe UI", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.service-card p,
.skill-card p,
.project-card p,
.testimonial-card p,
.process-card p,
.contact-card p {
  margin: 0;
  color: var(--text-muted);
}

.outcome-copy {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: var(--success-soft);
  color: var(--primary-strong);
  font-weight: 700;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  display: grid;
  gap: 1.15rem;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-strong);
}

.pricing-card.featured {
  border-color: rgba(255, 157, 61, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 157, 61, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
}

.pricing-card h3 {
  font-size: 2rem;
}

.price {
  font-family: Bahnschrift, Aptos, "Segoe UI", sans-serif;
  font-size: 2.25rem;
  letter-spacing: -0.04em;
}

.price-copy,
.support-copy {
  color: rgba(244, 247, 252, 0.76);
}

.package-features {
  display: grid;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.support-pill {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 199, 240, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.skills-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.skill-card {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 23, 35, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.skill-card h3 {
  font-size: 1.3rem;
}

.portfolio-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.filter-button {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(18, 23, 35, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.portfolio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
  display: grid;
  gap: 1.2rem;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 23, 35, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.project-preview {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 0.4rem);
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(18, 23, 35, 0.08);
  background: #dcecff;
}

.project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-body {
  display: grid;
  gap: 0.8rem;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.status-badge {
  padding: 0.45rem 0.75rem;
  background: var(--accent-soft);
  color: #af5f00;
  font-size: 0.82rem;
}

.project-summary {
  font-size: 1rem;
}

.project-copy-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  list-style: none;
}

.project-copy-list strong {
  color: var(--ink);
}

.tag {
  color: var(--primary-strong);
  background: var(--secondary-soft);
}

.text-link {
  color: var(--primary);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--primary-strong);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 23, 35, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.process-card-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.process-card-number strong {
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  display: grid;
  gap: 1.1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.testimonial-stars {
  color: var(--accent);
  letter-spacing: 0.15em;
  font-size: 0.95rem;
}

.testimonial-card p {
  color: rgba(244, 247, 252, 0.82);
}

.testimonial-card h3 {
  font-size: 1.15rem;
  color: var(--white);
}

.testimonial-role {
  color: rgba(244, 247, 252, 0.62);
  font-size: 0.94rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid rgba(18, 23, 35, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1.5rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(18, 23, 35, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

.contact-card a {
  color: var(--primary);
  font-weight: 800;
}

.contact-card a,
.contact-card p {
  overflow-wrap: anywhere;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.legal-card {
  display: grid;
  gap: 0.7rem;
}

.legal-card h3 {
  margin: 0;
  font-family: Bahnschrift, Aptos, "Segoe UI", sans-serif;
  font-size: 1.2rem;
}

.legal-card p {
  margin: 0;
  color: var(--text-muted);
}

.social-link {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 23, 35, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-weight: 700;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  font-weight: 800;
  color: var(--ink);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(18, 23, 35, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 118, 109, 0.12);
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--primary-strong);
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0 3rem;
  background: linear-gradient(135deg, #051a3b 0%, #0b3f8a 62%, #09326d 100%);
  color: var(--white);
}

.footer-inner {
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: end;
}

.footer-brand {
  width: fit-content;
  padding: 0.55rem 0.8rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(1, 14, 37, 0.28);
}

.footer-brand .brand-logo {
  width: clamp(9.5rem, 13vw, 12.5rem);
}

.footer-copy,
.footer-meta p {
  color: rgba(244, 247, 252, 0.72);
}

.footer-nav ul {
  display: grid;
  gap: 0.75rem;
}

.footer-nav a {
  color: rgba(244, 247, 252, 0.86);
  font-weight: 700;
}

.footer-nav .nav-link.is-active,
.footer-nav .nav-link:hover,
.footer-nav .nav-link:focus-visible {
  color: var(--secondary);
}

.footer-nav .nav-link::after {
  background: var(--secondary);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--secondary);
}

.footer-meta {
  display: grid;
  gap: 0.6rem;
  justify-items: end;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: end;
}

.footer-legal-links .text-link {
  color: rgba(244, 247, 252, 0.86);
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: grid;
  gap: 1rem;
  width: min(34rem, calc(100% - 2rem));
  padding: 1.15rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(6, 27, 66, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(6, 27, 66, 0.2);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-copy {
  display: grid;
  gap: 0.35rem;
}

.cookie-copy strong {
  color: var(--ink);
  font-size: 1rem;
}

.cookie-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .pricing-grid,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 5.35rem 1rem auto 1rem;
    padding: 1rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(18, 23, 35, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.75rem);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: start;
  }

  body.nav-open .menu-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .menu-line:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .about-cards,
  .portfolio-grid,
  .contact-cards,
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .display-title {
    max-width: 100%;
  }

  .section-heading h2 {
    max-width: 100%;
  }

  .hero-stats,
  .service-grid,
  .pricing-grid,
  .skills-grid,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .about-meta {
    grid-template-columns: 1fr;
  }

  .portfolio-toolbar {
    align-items: start;
  }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    width: auto;
  }

  .cookie-actions {
    justify-content: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.whatsapp-float-tooltip {
  position: absolute;
  left: 4.5rem;
  background: #081a3f;
  color: white;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: var(--shadow-strong);
}
.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { opacity: 0.5; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* AI Chatbot */
.chatbot-widget {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 1000;
  font-family: inherit;
}
.chatbot-toggle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(11, 63, 138, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.chatbot-toggle:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 6px 20px rgba(11, 63, 138, 0.6);
}
.chatbot-container {
  position: absolute;
  bottom: 4.5rem;
  right: 0;
  width: 22.5rem;
  max-width: calc(100vw - 4rem);
  height: 30rem;
  max-height: calc(100vh - 8rem);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-strong), 0 12px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}
.chatbot-container.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.chatbot-header {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chatbot-avatar {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.chatbot-status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--success);
  border: 2px solid var(--primary);
}
.chatbot-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}
.chatbot-subtitle {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.chatbot-close {
  background: transparent;
  border: none;
  color: white;
  opacity: 0.7;
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.chatbot-close:hover {
  opacity: 1;
}
.chatbot-messages {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scroll-behavior: smooth;
}
.chat-msg {
  max-width: 80%;
  padding: 0.75rem 1rem;
  border-radius: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.4;
  animation: msg-slide-in 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.chat-msg.bot {
  align-self: flex-start;
  background: white;
  color: var(--ink);
  border-bottom-left-radius: 0.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
}
.chat-msg.user {
  align-self: flex-end;
  background: var(--primary);
  color: white;
  border-bottom-right-radius: 0.25rem;
  box-shadow: 0 2px 8px rgba(11, 63, 138, 0.15);
}
.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
  align-self: flex-start;
}
.chatbot-chip {
  background: rgba(11, 63, 138, 0.08);
  border: 1px solid rgba(11, 63, 138, 0.12);
  color: var(--primary-strong);
  padding: 0.4rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.chatbot-chip:hover {
  background: rgba(11, 63, 138, 0.14);
  border-color: rgba(11, 63, 138, 0.24);
  transform: translateY(-1px);
}
.chatbot-input-area {
  padding: 0.9rem 1.25rem;
  background: white;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.chatbot-input {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  background: var(--bg-soft);
}
.chatbot-input:focus {
  border-color: var(--primary);
  background: white;
}
.chatbot-send {
  background: var(--primary);
  color: white;
  border: none;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.chatbot-send:hover {
  background: var(--primary-strong);
  transform: scale(1.05);
}
@keyframes msg-slide-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Social Suite styling */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: rgba(18, 23, 35, 0.05);
  color: var(--primary-strong);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(18, 23, 35, 0.05);
}
.social-icon-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(11, 63, 138, 0.2);
}
.section-dark .social-icon-link {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border-color: rgba(255, 255, 255, 0.06);
}
.section-dark .social-icon-link:hover {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 4px 10px rgba(255, 157, 61, 0.3);
}
.social-icon-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

@media (max-width: 500px) {
  .whatsapp-float {
    left: 1rem;
    bottom: 1rem;
  }
  .chatbot-widget {
    right: 1rem;
    bottom: 1rem;
  }
  .chatbot-container {
    bottom: 4rem;
    right: 0;
    width: calc(100vw - 2rem);
    height: 26rem;
  }
}
