:root {
  --bg: #0b1020;
  --surface: #111831;
  --surface-2: #f5f7fb;
  --text: #0e1324;
  --text-light: #eaf0ff;
  --muted: #65708a;
  --line: rgba(255, 255, 255, 0.1);
  --primary: #0f62fe;
  --primary-dark: #0a4ad1;
  --accent: #8dd4ff;
  --radius: 22px;
  --shadow: 0 18px 60px rgba(15, 20, 40, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

.imfond {
	background-image: url('photo1.jpg');
	background-size: cover; /* ou contain */
    background-repeat: no-repeat;
    background-position: center;
	border-radius: 32px;
	background-size: 120%;
	}
	
.imfond2 {
	background-image: url('photo2.jpg');
	background-size: 60%;
	}	

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.86);
  border-bottom: 1px solid rgba(14, 19, 36, 0.06);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.logo span { color: var(--primary); }

nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

nav a { font-weight: 600; color: #24304d; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  border: none;
  box-shadow: 0 12px 28px rgba(15, 98, 254, 0.22);
}

.btn:hover { background: var(--primary-dark); }
.btn-secondary {
  background: white;
  color: var(--text);
  border: 1px solid rgba(14,19,36,0.12);
  box-shadow: none;
}
.btn-small { padding: 0.7rem 1rem; }

.hero {
  background:
    radial-gradient(circle at top right, rgba(141,212,255,0.28), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color:#f5d44c;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); max-width: 12ch; }
h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
h3 { font-size: 1.3rem; }

.lead {
  max-width: 58ch;
  color: #ffffff; /*#42506f; */
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin: 1.8rem 0 1rem;
  flex-wrap: wrap;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
  color: #ffffff; /* #3c4a68; */
  font-weight: 600;
}

.hero-card {
  position: relative;
  min-height: 410px;
  border-radius: 32px;
  background: linear-gradient(180deg, #0d1836 0%, #0c1227 100%);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(8, 16, 34, 0.28);
}

.glow {
  position: absolute;
  inset: -20% auto auto -10%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141,212,255,0.6) 0%, rgba(15,98,254,0.06) 55%, transparent 70%);
}

.card-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 410px;
}

.card-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.72);
}

.stat-list {
  display: grid;
  gap: 1rem;
}

.stat-list div {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.stat-list strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.stat-list span { color: rgba(255,255,255,0.74); }

.section { padding: 5rem 0; }
.section-dark {
  background: linear-gradient(180deg, #0c1227 0%, #121c39 100%);
  color: white;
}
.section-head {
  max-width: 760px;
  margin-bottom: 2.2rem;
}
.section-head p { color: #50607f; }
.section-head-light p { color: rgba(255,255,255,0.76); }

.grid { display: grid; gap: 1.2rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }

.service-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(14, 19, 36, 0.08);
  box-shadow: var(--shadow);
}

.service-card p { margin: 0; color: #55627d; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.price-card {
  padding: 1.7rem;
  border-radius: 26px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(15,98,254,0.22) 0%, rgba(255,255,255,0.07) 100%);
  border-color: rgba(141,212,255,0.35);
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(141,212,255,0.18);
  color: #d5f0ff;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.4rem 0 1rem;
}

.price-card ul,
.about-box ul {
  margin: 0;
  padding-left: 1.15rem;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-box {
  padding: 1.7rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid rgba(14, 19, 36, 0.08);
}

.contact-section {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.contact-list p { margin: 0.35rem 0; }

.contact-form {
  padding: 1.5rem;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 19, 36, 0.08);
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
}

input, textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(14, 19, 36, 0.14);
  font: inherit;
  background: white;
}

textarea { resize: vertical; }

.site-footer {
  padding: 1.2rem 0;
  background: #0b1020;
  color: rgba(255,255,255,0.78);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .hero-grid,
  .cards-3,
  .pricing-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  nav { display: none; }
  .hero { padding-top: 3.5rem; }
  .hero-card { min-height: 300px; }
  .card-content { min-height: 300px; }
}
