/* Neutral, modern landing page styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
:root {
  color-scheme: light;
  --color-bg: #f5f6f7;
  --color-text: #1c1e22;
  --color-subtle-text: #a7aeb4;
  --color-card: #ffffff;
  --color-accent: #3a7afe;
  --color-dark: #0f1113;
  --shadow: 0 24px 80px rgba(28, 30, 34, 0.08);
  --radius: 24px;
  --radius-small: 16px;
  --max-width: 1080px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
a.button {
  font: inherit;
}

main {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 36px 24px 64px;
}

.container {
  width: 100%;
  margin: 0 auto;
}

section {
  margin-bottom: 48px;
}

.hero {
  padding: 48px 0 56px;
}

.hero-content {
  background: var(--color-card);
  border: 1px solid #e8eaed;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-subtle-text);
}

.hero h1,
.offer h2,
.pricing h2,
.social-proof h2,
.why h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.3rem, 3.25vw, 3.6rem);
  line-height: 1.02;
}

.subheadline,
.hero-content p {
  margin: 24px 0 0;
  max-width: 700px;
  color: var(--color-subtle-text);
  font-size: 1.05rem;
}

.cta-button,
a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 18px 35px rgba(58, 122, 254, 0.16);
}

.hero-actions {
  margin-top: 32px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-actions a.button {
  margin-top: 0;
}

.secondary-button {
  background: transparent;
  border: 2px solid var(--color-text);
  color: var(--color-text);
  box-shadow: none;
}

.secondary-button:hover {
  background: #f0f1f3;
  border-color: var(--color-text);
}

.cta-button:hover,
a.button:hover {
  background: #2561dc;
  transform: translateY(-1px);
  box-shadow: 0 24px 42px rgba(58, 122, 254, 0.2);
}

.bullet-list,
.offer-list,
.why-list,
.contact-pros {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.bullet-list li,
.offer-list li,
.why-list li,
.contact-pros li {
  padding: 16px 18px;
  background: #f9fafb;
  border-radius: var(--radius-small);
  border: 1px solid #e8eaed;
  color: var(--color-text);
}

.gallery {
  padding: 0;
}

.gallery .container {
  background: var(--color-card);
  border: 1px solid #e8eaed;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}

.gallery h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.6rem);
  margin-bottom: 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-image {
  width: 100%;
  height: auto;
  object-fit: contain; /* shows full image */
  border-radius: var(--radius);
  display: block;
  background: #f0f0f0; /* optional: fills empty space */
}

.gallery-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28, 30, 34, 0.12);
}

.offer {
  padding: 0;
}

.offer .container,
.pricing .container,
.social-proof .container,
.why .container,
.final-cta .container {
  background: var(--color-card);
  border: 1px solid #e8eaed;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}

.offer h2,
.pricing h2,
.social-proof h2,
.why h2,
.final-cta h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.6rem);
  margin-bottom: 24px;
}

.pricing p,
.final-cta p,
.social-proof p {
  margin: 0;
  color: var(--color-subtle-text);
  font-size: 1rem;
}

.pricing p + p {
  margin-top: 12px;
}

.mockup-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 28px 0 20px;
}

.mockup-placeholder {
  min-height: 160px;
  display: grid;
  place-items: center;
  background: #f9fafb;
  color: var(--color-subtle-text);
  border: 1px solid #e8eaed;
  border-radius: var(--radius-small);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}

.mock-site-link {
  font-weight: 700;
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
}

.why-list {
  display: grid;
  gap: 14px;
}

.final-cta {
  text-align: center;
}

.final-cta p {
  margin: 16px auto 0;
  max-width: 660px;
}

.contact-hero {
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 60px 0;
}

.contact-hero .container {
  max-width: 640px;
  background: var(--color-card);
  border: 1px solid #e8eaed;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 42px;
  text-align: center;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  color: var(--color-text);
}

.contact-hero p {
  margin: 20px auto 0;
  max-width: 540px;
  color: var(--color-subtle-text);
  font-size: 1.05rem;
}

.contact-pros {
  margin-top: 32px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

@media (max-width: 640px) {
  main {
    padding: 28px 18px 48px;
  }

  .hero-content,
  .offer .container,
  .pricing .container,
  .social-proof .container,
  .why .container,
  .final-cta .container,
  .contact-hero .container {
    padding: 32px;
  }

  .cta-button,
  a.button {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
