:root{
  --max: 1120px;
  --pad: 28px;
  --text: #101113;
  --muted: #585f6a;
  --line: rgba(16,17,19,.12);
  --primary: #1a73e8;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --serif: ui-serif, Georgia, serif;
  --radius: 14px;
  --gap: 84px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: var(--sans);
  color: var(--text);
  background:#fff;
}

body::before{
  content:"";
  position:fixed;
  inset:-25%;
  background: radial-gradient(780px 460px at 72% 18%, rgba(16,17,19,.06), transparent 62%);
  pointer-events:none;
  z-index:-1;
}

a{color:inherit; text-decoration:none;}
.container{max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);}

header{padding: 28px 0 0;}
.brand{font-family: var(--serif); font-size:1.8rem; font-weight:700;}
.brand small{display:block; font-size:.95rem; color:var(--muted);}

main{padding: 8px 0 40px;}
section{padding: 110px 0;}

section:first-of-type {
  padding-top: 90px;
  padding-bottom: 70px;
}

section:last-of-type{
  padding-top: 60px; 
  padding-bottom: 20px;
}

.content{
  display:grid;
  grid-template-columns:1fr;
  gap:42px;
  align-items: start;
}

h1{
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height:1.02;
  margin: 0 0 18px;
}

h2{
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 0;
}

p{
  font-size:1.1rem;
  line-height:1.8;
  margin-top: 0;
}

.muted{color:var(--muted);}

.cta{
  display:inline-block;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  border:1px solid rgba(16,17,19,.18);
  background: rgba(16,17,19,.02);
  color: var(--text);
  transition: all .2s ease;
}

.cta.primary{
  background: var(--primary);
  color:#fff;
  border:2px solid var(--primary);
  box-shadow: 0 6px 18px rgba(26,115,232,.18);
}

.cta.secondary{
  border: 1px solid rgba(16,17,19,.25);
  color: var(--text);
  background: transparent;
}

.cta:hover{
  border-color: rgba(16,17,19,.4);
  transform: translateY(-1px);
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.actions .muted {
  width: 100%;
  margin-top: 4px;
  flex-basis: 100%;
}

.card{
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  max-width:100%;
}

form{display:grid; gap:8px;}

input, textarea, select{
  padding:8px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.2);
}

textarea{min-height:80px;}

.form-note {
  margin-top: 12px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(16, 17, 19, 0.55);
  background: rgba(16, 17, 19, 0.03);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(16, 17, 19, 0.08);
}

footer p {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: rgba(16, 17, 19, 0.55);
  letter-spacing: 0.2px;
}

.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:.6s;
}

.reveal.active{
  opacity:1;
  transform:none;
}

.footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  color: #666;
}

.footer-link {
  color: #666;
  text-decoration: underline;
}

.footer-text {
  margin: 8px 0 0;
}

@media (min-width: 600px) {
  .content {
    gap: 32px;
  }

  h1 {
    font-size: clamp(2.6rem, 6vw, 4rem);
  }
}

/* DESKTOP */
@media (min-width: 900px) {
  .content {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
  }
}

/* LARGE DESKTOP */
@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  section {
    padding: 120px 0;
  }
}

/* MOBILE FINE TUNING */
@media (max-width: 600px) {
  h1 {
    font-size: 2.3rem;
    line-height: 1.05;
  }

  section {
    padding: 70px 0;
  }

  section:first-of-type {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .cta {
    width: 100%;
    text-align: center;
  }

  .actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .actions .muted {
    margin-top: 6px;
  }

  .order-call { order: 1; }
  .order-msg { order: 2; }
  .order-wa { order: 3; }
}