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

/* ═══════ VARIABLES ═══════ */
:root {
  --accent: #1e3a5c;
  --accent-light: #4a7fa8;
  --accent-dark: #0f2030;
  --accent-glow: rgba(30, 58, 92, 0.18);
  --bg-primary: #ffffff;
  --bg-secondary: #f7f8fa;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --text-primary: #1e2a3a;
  --text-secondary: #5a6a7a;
  --text-muted: #9aa5b1;
  --border: #e5e8ed;
  --border-accent: rgba(30, 58, 92, 0.3);
  --nav-bg: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-nav: 0 1px 4px rgba(0,0,0,0.06);
  --radius: 8px;
  --radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .25s ease;
}

a:hover {
  color: var(--accent-dark);
}

/* ═══════ CONTAINER ═══════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ═══════ NAV ═══════ */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-nav);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  height: 34px;
  transition: opacity .2s;
}

.nav-logo:hover {
  opacity: .85;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
  margin-left: auto;
}

.nav-links li:last-child {
  margin-left: .5rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: color .25s ease;
  padding: .25rem 0;
}

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

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: .45rem 1.1rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: .82rem !important;
  letter-spacing: .02em;
  line-height: 1.4;
  white-space: nowrap;
  transition: all .25s ease !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all .3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════ PAGE HEADER ═══════ */
.page-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* ═══════ BUTTONS ═══════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .92rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(30, 58, 92, .04);
}

/* ═══════ SECTIONS ═══════ */
section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-label {
  display: inline-block;
  padding: .3rem .75rem;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.label-amber {
  background: rgba(30, 58, 92, .1);
  color: var(--accent);
}

.label-blue {
  background: rgba(59, 130, 246, .08);
  color: #3b82f6;
}

.label-emerald {
  background: rgba(16, 185, 129, .08);
  color: #059669;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: .75rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.section-center {
  text-align: center;
}

.section-center .section-subtitle {
  margin: 0 auto;
}

/* ═══════ HERO ═══════ */
.hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--bg-secondary);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .85rem;
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  background: rgba(30, 58, 92, .06);
}

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.hero h1 .accent-text {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

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

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--border);
}

/* ═══════ FEATURE CARDS ═══════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all .3s ease;
}

.feature-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 92, .08);
  color: var(--accent);
}

.feature-card h3 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.feature-card p {
  font-size: .8rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ═══════ PROCESS / HOW IT WORKS ═══════ */
.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 .5rem;
}

.process-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  border: 2px solid var(--accent);
  background: var(--bg-primary);
  color: var(--accent);
  position: relative;
  z-index: 2;
  transition: all .3s ease;
}

.process-step:hover .process-number {
  background: var(--accent);
  color: #fff;
}

.process-step h3 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.process-step p {
  font-size: .78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.info-box {
  margin-top: 2.5rem;
  padding: 1.15rem 1.5rem;
  background: rgba(59, 130, 246, .05);
  border: 1px solid rgba(59, 130, 246, .12);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}

.info-box .info-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(59, 130, 246, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  color: #3b82f6;
  font-weight: 700;
}

/* ═══════ INTERFACE ═══════ */
.interface-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2.5rem;
}

.interface-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.interface-feature {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

.interface-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

.interface-feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.interface-feature p {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.interface-images {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 1rem;
  align-items: center;
}

.interface-images img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.yerli-note {
  margin-top: 1.5rem;
  padding: .85rem 1.25rem;
  background: rgba(16, 185, 129, .05);
  border: 1px solid rgba(16, 185, 129, .15);
  border-radius: var(--radius);
  font-size: .85rem;
  color: #059669;
  font-weight: 500;
}

/* ═══════ EFFICIENCY ═══════ */
.efficiency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.efficiency-card {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .3s ease;
}

.efficiency-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.efficiency-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.efficiency-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.efficiency-card p {
  font-size: .82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ═══════ COST ═══════ */
.cost-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2.5rem;
}

.cost-highlight {
  background: linear-gradient(135deg, rgba(99, 102, 241, .06), rgba(99, 102, 241, .02));
  border: 1px solid rgba(99, 102, 241, .12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.cost-highlight .big-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #6366f1;
  line-height: 1.1;
}

.cost-highlight .big-label {
  font-size: 1rem;
  font-weight: 600;
  margin-top: .4rem;
}

.cost-highlight .big-desc {
  font-size: .82rem;
  color: var(--text-secondary);
  margin-top: .4rem;
}

.cost-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cost-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .25s ease;
}

.cost-item:hover {
  border-color: var(--border-accent);
}

.cost-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.cost-item h4 {
  font-size: .88rem;
  font-weight: 600;
}

.cost-item p {
  font-size: .78rem;
  color: var(--text-secondary);
}

/* ═══════ SOLUTIONS ═══════ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
}

.solution-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.solution-card .img-wrap {
  overflow: hidden;
}

.solution-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform .4s ease;
}

.solution-card:hover img {
  transform: scale(1.04);
}

.solution-card .card-body {
  padding: 1.25rem;
}

.solution-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.solution-card p {
  font-size: .82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════ SERVICES ═══════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.service-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--border);
}

.service-card h3 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.service-card p {
  font-size: .78rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ═══════ ADVANTAGES ═══════ */
.advantages-banner {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.advantage-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .25s ease;
}

.advantage-item:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card);
}

.advantage-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-item h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.advantage-item p {
  font-size: .82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ═══════ RESULTS ═══════ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.result-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .3s ease;
}

.result-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.result-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
  margin-bottom: .4rem;
}

.result-card:nth-child(1) .result-number { color: #10b981; }
.result-card:nth-child(2) .result-number { color: #3b82f6; }
.result-card:nth-child(3) .result-number { color: var(--accent); }

.result-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.result-card p {
  font-size: .78rem;
  color: var(--text-secondary);
}

/* ═══════ PRICING ═══════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card.highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.pricing-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.pricing-card img {
  width: 100%;
  object-fit: cover;
}

.pricing-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: .25rem;
}

.pricing-body .pricing-desc {
  font-size: .82rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.pricing-features li {
  font-size: .8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════ CTA ═══════ */
.cta-section {
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.cta-section .section-title {
  max-width: 500px;
  margin: 0 auto .5rem;
}

.cta-section .section-subtitle {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 850px;
  margin: 0 auto 2.5rem;
}

.cta-card {
  padding: 1.5rem 1.25rem;
  background: rgba(30, 58, 92, .04);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: all .25s ease;
}

.cta-card:hover {
  background: rgba(30, 58, 92, .08);
  transform: translateY(-2px);
}

.cta-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--accent);
}

.cta-card p {
  font-size: .82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.cta-card a {
  color: var(--text-primary);
  transition: color .25s ease;
}

.cta-card a:hover {
  color: var(--accent);
}

.cta-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.cta-bottom img.qr {
  width: 90px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cta-bottom img.logo-footer {
  height: 38px;
}

/* ═══════ CONTACT FORM AREA ═══════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.contact-info-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .25s ease;
}

.contact-info-card:hover {
  border-color: var(--border-accent);
}

.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--accent);
}

.contact-info-card p {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.contact-info-card a:hover {
  color: var(--accent);
}

/* ═══════ FOOTER ═══════ */
footer {
  background: #1e2a3a;
  color: #c5cdd6;
  padding: 3rem 0 1.5rem;
}

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

.footer-brand img {
  height: 32px;
  margin-bottom: .75rem;
  filter: brightness(10);
}

.footer-brand p {
  font-size: .82rem;
  line-height: 1.65;
  color: #8a9bb0;
}

.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: .75rem;
}

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

.footer-col ul li {
  margin-bottom: .4rem;
}

.footer-col ul a {
  font-size: .82rem;
  color: #8a9bb0;
  transition: color .2s;
}

.footer-col ul a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.25rem;
  text-align: center;
  font-size: .78rem;
  color: #6b7a8a;
}

/* ═══════ CONTACT FORM ═══════ */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group .required {
  color: #e53e3e;
}

.form-group input,
.form-group textarea {
  font-family: inherit;
  font-size: .9rem;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .65rem .9rem;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--bg-primary);
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: .25rem;
}

.form-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none !important;
}

.form-status {
  font-size: .85rem;
  border-radius: var(--radius);
  padding: .6rem .9rem;
  margin-bottom: .75rem;
  display: none;
}

.form-status:not(:empty) {
  display: block;
}

.form-status--success {
  background: rgba(16, 185, 129, .08);
  border: 1px solid rgba(16, 185, 129, .25);
  color: #059669;
}

.form-status--error {
  background: rgba(229, 62, 62, .07);
  border: 1px solid rgba(229, 62, 62, .25);
  color: #c53030;
}

@media(max-width:600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 1.5rem 1.25rem;
  }
}

/* ═══════ REVEAL ANIMATION ═══════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════ RESPONSIVE ═══════ */
@media(max-width:1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .solutions-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .process-timeline {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    flex: 0 0 30%;
  }
}

@media(max-width:768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    flex-direction: column;
    background: var(--nav-bg);
    padding: 5rem 1.5rem 2rem;
    gap: 1.25rem;
    transition: right .35s cubic-bezier(.16, 1, .3, 1);
    border-left: 1px solid var(--border);
    box-shadow: -4px 0 20px rgba(0,0,0,.08);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image {
    order: -1;
  }

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

  .process-step {
    flex: 0 0 45%;
  }

  .interface-grid,
  .cost-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .interface-images {
    grid-template-columns: 1fr 1.5fr;
  }

  .efficiency-grid,
  .solutions-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .results-grid {
    grid-template-columns: 1fr;
  }

  .cta-cards {
    grid-template-columns: 1fr;
  }

  .cta-bottom {
    flex-direction: column;
    gap: 1.25rem;
  }

  .advantages-banner {
    height: 160px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card.highlight {
    transform: none;
  }
}

@media(max-width:480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex: 0 0 100%;
  }

  .interface-images {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
