/* style.css */
:root {
  --color-bg: #f5f7fb;
  --color-bg-alt: #ffffff;
  --color-primary: #1746a2;
  --color-primary-soft: #e2ebff;
  --color-secondary: #111827;
  --color-accent: #f97316;
  --color-border: #e2e8f0;
  --color-text-main: #0f172a;
  --color-text-muted: #6b7280;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.09);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-pill: 999px;
  --transition-fast: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text-main);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-light {
  background-color: #f9fafb;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

.section-header p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.975rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, #1746a2, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #12357b, #1d4ed8);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background-color: var(--color-bg-alt);
  color: var(--color-primary);
  border-color: rgba(148, 163, 184, 0.55);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.btn-block {
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: radial-gradient(circle at 0 0, #60a5fa, #1d4ed8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

.logo-text {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  font-size: 1.15rem;
  color: var(--color-secondary);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

.nav-list a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
  padding: 0.4rem 0.2rem;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.nav-list a:hover {
  color: var(--color-primary);
  border-color: rgba(37, 99, 235, 0.4);
}

/* Mobile nav toggle */
.nav-toggle {
  width: 40px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background-color: #ffffff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background-color: #0f172a;
}

.btn-header {
  display: none;
}

/* Hero */
.hero {
  padding: 4.25rem 0 4rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-content h1 {
  margin: 0 0 1rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 2rem;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--color-text-main);
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-highlights i {
  color: #16a34a;
  font-size: 0.85rem;
}

/* Hero trust */
.hero-trust {
  display: flex;
  gap: 1.75rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Hero form */
.hero-form-wrapper {
  flex: 1;
}

.form-card {
  background-color: #ffffff;
  border-radius: 1.3rem;
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.4rem 1.6rem;
  border: 1px solid rgba(226, 232, 240, 0.7);
}

.form-card h2,
.form-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.form-subtitle {
  margin: 0 0 1.35rem;
  color: var(--color-text-muted);
  font-size: 0.87rem;
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.83rem;
  color: #4b5563;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-size: 0.9rem;
  padding: 0.6rem 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid var(--color-border);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.32);
  background-color: #f9fafb;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-note {
  margin-top: 0.8rem;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.form-note i {
  font-size: 0.9rem;
}

.form-success {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #15803d;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

.service-card {
  background-color: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.24);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at 0 0, #e0ecff, #bfdbfe);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  margin-bottom: 0.8rem;
}

.service-icon i {
  font-size: 1.1rem;
}

.service-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.service-features {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.86rem;
  color: var(--color-text-main);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Trust layout */
.trust-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Counters */
.trust-counters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.counter-card {
  background-color: #0f172a;
  border-radius: 1rem;
  padding: 1rem;
  color: #e5e7eb;
  text-align: left;
}

.counter-number {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
}

.counter-label {
  font-size: 0.82rem;
  opacity: 0.85;
}

/* Partners */
.trust-partners {
  background-color: #ffffff;
  border-radius: 1.1rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.partners-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  align-items: center;
}

.partner-logo {
  padding: 0.45rem 0.7rem;
  border-radius: 0.9rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
  text-align: center;
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.8;
}

/* Testimonials */
.trust-testimonials {
  background: radial-gradient(circle at 0 0, #e0ecff, #eff6ff);
  border-radius: 1.5rem;
  padding: 1.5rem 1.4rem;
}

.testimonials-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.testimonial-card {
  margin: 0;
  padding: 0.9rem 0.95rem;
  border-radius: 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.8);
}

.testimonial-card blockquote {
  margin: 0 0 0.7rem;
  font-size: 0.86rem;
  line-height: 1.4;
  color: #111827;
}

.testimonial-name {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
}

.testimonial-role {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* About & Process */
.about-layout {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.about-content h2 {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.about-content p {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.about-list i {
  color: #22c55e;
}

/* Process steps */
.process h3 {
  margin: 0 0 0.9rem;
  font-size: 1.1rem;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.process-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.process-step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #eff6ff, #bfdbfe);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1d4ed8;
  flex-shrink: 0;
}

.process-step-content h4 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.process-step-content p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

/* CTA */
.cta-section {
  background: radial-gradient(circle at 0 0, #dbeafe, #eff6ff);
  padding: 2.9rem 0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  align-items: flex-start;
}

.cta-text h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.cta-text p {
  margin: 0;
  font-size: 0.93rem;
  color: #1f2937;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-size: 0.9rem;
  color: #0f172a;
}

.cta-phone i {
  color: #22c55e;
}

/* Contact */
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.contact-details h2 {
  margin: 0 0 0.7rem;
  font-size: 1.5rem;
}

.contact-details p {
  margin: 0 0 0.9rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.contact-item i {
  margin-top: 0.15rem;
  color: var(--color-primary);
}

.contact-item h3 {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
}

.contact-item p {
  margin: 0;
  font-size: 0.88rem;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.contact-badges span {
  font-size: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Contact forms */
.contact-form-wrapper {
  flex: 1;
}

.form-card-alt {
  background-color: #0f172a;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.form-card-alt .form-subtitle {
  color: #9ca3af;
}

.form-card-alt label {
  color: #e5e7eb;
}

.form-card-alt input {
  background-color: rgba(15, 23, 42, 0.8);
  border-color: rgba(148, 163, 184, 0.8);
  color: #e5e7eb;
}

.form-card-alt input::placeholder {
  color: #9ca3af;
}

.form-card-alt input:focus {
  background-color: #020617;
}

/* Footer */
.footer {
  background-color: #020617;
  color: #cbd5f5;
  padding-top: 3rem;
}

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

.footer-about p {
  margin: 0.6rem 0 1rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-contact p {
  margin: 0.15rem 0;
  font-size: 0.86rem;
  color: #e5e7eb;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact i {
  margin-right: 0.35rem;
  color: #60a5fa;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.8rem;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.footer-social a:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Footer sitemap */
.footer-sitemap h3,
.footer-keywords h3 {
  margin: 0 0 0.6rem;
  font-size: 0.98rem;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.86rem;
  color: #9ca3af;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-keywords p {
  margin: 0 0 0.7rem;
  font-size: 0.88rem;
  color: #9ca3af;
}

.footer-keyword-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.footer-keyword-list li {
  font-size: 0.8rem;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(75, 85, 99, 0.8);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 1);
  margin-top: 2.25rem;
  padding: 0.9rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #9ca3af;
  text-decoration: none;
}

.back-to-top i {
  font-size: 0.78rem;
}

/* Footer logo */
.footer-logo .logo-mark {
  box-shadow: none;
}

/* Responsive styles */
@media (min-width: 640px) {
  .hero-inner {
    padding-top: 0.5rem;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

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

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

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

  .cta-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cta-actions {
    flex-direction: row;
    align-items: center;
  }

  .contact-layout {
    flex-direction: row;
  }

  .contact-details {
    flex: 1.1;
  }

  .contact-form-wrapper {
    flex: 0.9;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.1fr);
  }
}

@media (min-width: 768px) {
  .nav-list {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .btn-header {
    display: inline-flex;
  }

  .hero-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.75rem;
  }

  .hero-content {
    flex: 1.1;
  }

  .hero-form-wrapper {
    flex: 0.9;
  }

  .hero {
    padding: 4.7rem 0 4.2rem;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .trust-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .trust-counters {
    flex: 1;
  }

  .trust-partners {
    flex: 1.1;
  }

  .trust-testimonials {
    flex: 1.3;
  }

  .about-layout {
    flex-direction: row;
  }

  .about-content {
    flex: 1.15;
  }

  .process {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 2.9rem;
  }

  .section {
    padding: 4.6rem 0;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }

  .services-grid {
    gap: 1.6rem;
  }

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

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

/* Mobile nav open */
.nav-open .nav-list {
  position: absolute;
  inset-inline: 0;
  top: 55px;
  display: flex;
  flex-direction: column;
  background-color: rgba(248, 250, 252, 0.98);
  padding: 0.75rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

/* Accessibility */
:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 3px;
}
