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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #0f0f0f;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --text-muted: #6b6b6b;
  --gray-primary: #888888;
  --gray-dark: #555555;
  --gray-light: #cccccc;
  --gray-glow: rgba(136, 136, 136, 0.4);
  --gray-border: rgba(255, 255, 255, 0.08);
  --success: #27ae60;
  --warning: #f39c12;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI",
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(136, 136, 136, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(108, 52, 131, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(136, 136, 136, 0.05) 0%,
      transparent 50%
    );
  z-index: -1;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--gray-border);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1400px) {
  nav {
    max-width: 80%;
  }
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--gray-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: 55px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gray-primary);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gray-primary), var(--gray-dark));
  color: white !important;
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 600;
  box-shadow: 0 4px 15px var(--gray-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--gray-glow);
}

.nav-cta::after {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-border);
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.mobile-menu a:hover {
  background: rgba(136, 136, 136, 0.1);
  color: var(--text-primary);
}

main {
  margin-top: 70px;
  position: relative;
}

section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 1400px) {
  section {
    max-width: 80%;
    margin: 0 auto;
  }
}

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(136, 136, 136, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(136, 136, 136, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(136, 136, 136, 0.2),
    rgba(85, 85, 85, 0.2)
  );
  border: 1px solid var(--gray-primary);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 2rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(136, 136, 136, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(136, 136, 136, 0.4);
  }
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0.3;
  }
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--gray-light) 50%,
    var(--gray-primary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gray-primary), var(--gray-dark));
  color: white;
  padding: 1.1rem 2.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  box-shadow: 0 4px 20px var(--gray-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px var(--gray-glow);
}

.btn-secondary {
  color: var(--text-primary);
  padding: 1.1rem 2.5rem;
  border: 2px solid var(--gray-border);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: var(--gray-primary);
  background: rgba(136, 136, 136, 0.1);
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(136, 136, 136, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.services {
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--bg-secondary) 5%,
    var(--bg-secondary) 95%,
    transparent 100%
  );
  position: relative;
  margin: 2rem auto;
  text-align: center;
  padding: 6rem 2rem;
  max-width: 1400px;
}

@media (min-width: 1400px) {
  .services {
    max-width: 80%;
  }
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gray-border) 20%,
    var(--gray-border) 80%,
    transparent 100%
  );
}

.services::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gray-border) 20%,
    var(--gray-border) 80%,
    transparent 100%
  );
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(
    135deg,
    rgba(136, 136, 136, 0.05) 0%,
    rgba(108, 52, 131, 0.03) 100%
  );
  border: 2px solid rgba(136, 136, 136, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(136, 136, 136, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(136, 136, 136, 0.4);
  box-shadow: 0 10px 40px rgba(136, 136, 136, 0.2);
}

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gray-primary), var(--gray-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px var(--gray-glow);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  color: var(--text-secondary);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
}

.service-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gray-primary);
}

.why-choose {
  padding: 6rem 2rem;
  background: transparent;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .why-choose {
    max-width: 80%;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(136, 136, 136, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(136, 136, 136, 0.2),
    rgba(85, 85, 85, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--gray-light);
}

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

.process {
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--bg-secondary) 5%,
    var(--bg-secondary) 95%,
    transparent 100%
  );
  position: relative;
  margin: 2rem auto;
  text-align: center;
  padding: 6rem 2rem;
  max-width: 1400px;
}

@media (min-width: 1400px) {
  .process {
    max-width: 80%;
  }
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gray-border) 20%,
    var(--gray-border) 80%,
    transparent 100%
  );
}

.process::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gray-border) 20%,
    var(--gray-border) 80%,
    transparent 100%
  );
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--gray-primary) 0%,
    var(--gray-dark) 100%
  );
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
  position: relative;
  margin: 3rem 0;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-left: 40px;
  padding-right: 0;
  margin-left: 50%;
}

.timeline-dot {
  position: absolute;
  left: calc(100% - 10px);
  top: 1.5rem;
  width: 20px;
  height: 20px;
  background: var(--gray-primary);
  border: 4px solid var(--bg-secondary);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--gray-glow);
}

.timeline-item:nth-child(odd) .timeline-dot {
  left: auto;
  right: calc(100% - 10px);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 380px;
  width: 100%;
  transition: all 0.3s;
  text-align: left;
}

.timeline-content:hover {
  transform: translateY(-3px);
  border-color: rgba(136, 136, 136, 0.3);
}

.timeline-content h3 {
  color: var(--gray-light);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.methodology {
  text-align: center;
  padding: 4rem 2rem;
  background: transparent;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .methodology {
    max-width: 80%;
  }
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
  max-width: 800px;
}

.method-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  transition: all 0.3s;
}

.method-item:hover {
  border-color: var(--gray-primary);
  transform: translateY(-2px);
}

.method-item svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--gray-primary);
}

.method-item h4 {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(136, 136, 136, 0.02) 5%,
    rgba(136, 136, 136, 0.04) 50%,
    rgba(136, 136, 136, 0.02) 95%,
    transparent 100%
  );
  text-align: center;
  position: relative;
  margin: 2rem auto;
  padding: 6rem 2rem;
  max-width: 1400px;
}

@media (min-width: 1400px) {
  .contact {
    max-width: 80%;
  }
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: left;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

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

.form-group label {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gray-primary);
  background: rgba(136, 136, 136, 0.05);
}

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

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

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

.contact-form .btn-primary {
  width: 100%;
  margin-top: 1rem;
  cursor: pointer;
  border: none;
}

.contact-info {
  margin: 2rem 0;
  color: var(--text-secondary);
}

.contact-info a {
  color: var(--gray-light);
  text-decoration: none;
}

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

footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--gray-border);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  text-align: left;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1400px) {
  .footer-content {
    max-width: 80%;
  }
  .footer-bottom {
    max-width: 80%;
  }
}

.footer-brand h3 {
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--gray-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 2;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gray-primary);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--gray-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
  }

  .timeline-item:nth-child(odd) {
    margin-left: 0;
    padding-left: 80px;
    padding-right: 0;
  }

  .timeline-dot {
    left: 30px;
    top: 1.5rem;
    transform: translateX(-50%);
  }

  .timeline-item:nth-child(odd) .timeline-dot {
    left: 30px;
    right: auto;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }

  .hero {
    min-height: calc(100vh - 60px);
  }

  h1 {
    font-size: 2rem;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 1rem 1.5rem;
    text-align: center;
    width: 100%;
  }

  .trust-points {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .trust-point {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

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

  .service-card {
    padding: 2rem;
  }

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

  .timeline {
    margin: 2rem auto;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
    margin: 2rem 0;
  }

  .timeline-item:nth-child(odd) {
    margin-left: 0;
    padding-left: 80px;
    padding-right: 0;
  }

  .timeline-dot {
    right: auto;
    left: 30px;
    top: 1.5rem;
    transform: translateX(-50%);
  }

  .timeline-item:nth-child(odd) .timeline-dot {
    left: 30px;
    right: auto;
  }

  .timeline-content {
    padding: 1.2rem;
    max-width: none;
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

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

@media (max-width: 375px) {
  .logo {
    font-size: 1.2rem;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.8s ease-out;
}
