* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

:root {
  --primary: #3595A1;
  --primary-dark: #2c7c8c;
  --primary-soft: #e9f7f8;
  --text-dark: #102126;
  --text-soft: #5f7278;
  --white: #ffffff;
  --bg-light: #f7fbfc;
  --border: rgba(16, 33, 38, 0.08);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.5;
}

.store-icon {
  width: 23px;
  height: 23px;
  object-fit: contain;
  display: block;
}

/* NAV */
.site-nav {
  width: 100%;
  padding: 22px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.nav-links a:hover,
.active-link {
  opacity: 0.86;
}

.toggle {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  display: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 7%;
  top: 80px;
  width: 230px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dropdown-menu.open {
  display: block;
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 16px 18px;
  color: var(--text-dark);
  font-weight: 500;
}

/* HERO */
.hero {
  min-height: 92vh;
  padding: 70px 7%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  color: var(--white);
}

.hero-client {
  background: linear-gradient(135deg, #3595A1 0%, #54b4bf 100%);
}

.hero-photographer {
  background: linear-gradient(135deg, #2f8c99 0%, #4db5c0 100%);
}

.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-copy h1 {
  font-size: 3.4rem;
  line-height: 1.04;
  max-width: 680px;
}

.hero-copy p {
  margin-top: 18px;
  max-width: 620px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.center-buttons {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.78);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.mini-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(4px);
}

.mini-card i {
  font-size: 1.2rem;
}

.mini-card span {
  font-size: 0.97rem;
  font-weight: 500;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-shell {
  width: 100%;
  max-width: 430px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.phone-shell img {
  width: 100%;
  display: block;
  border-radius: 24px;
  object-fit: contain;
  max-height: 650px;
}

/* FEATURE STRIP */
.photographer-feature-strip,
.client-feature-strip {
  position: relative;
  margin-top: -80px;
  padding: 0 7% 40px;
  z-index: 5;
}

.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-strip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
}

.feature-strip-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(53, 149, 161, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-strip-icon i {
  font-size: 1.4rem;
}

.feature-strip-card h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--text-dark);
  font-weight: 700;
}

/* SECTIONS */
.section {
  padding: 90px 7%;
  background: var(--white);
}

.alt-section {
  background: #f2f8f9;
}

.light-section {
  background: var(--bg-light);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-heading span,
.section-kicker {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  margin-bottom: 10px;
}

.section-heading h2,
.split-copy h2,
.newsletter-box h2,
.cta-box h2 {
  font-size: 2.5rem;
  line-height: 1.08;
}

.section-heading p,
.split-copy p,
.newsletter-box p,
.cta-box p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 1.02rem;
}

/* CARDS */
.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

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

.info-card,
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.03);
}

.info-card {
  background: var(--bg-light);
}

.info-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
  box-shadow: var(--shadow);
}

.icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(53, 149, 161, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.info-card h3,
.step-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.info-card p,
.step-card p {
  color: var(--text-soft);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

/* SPLIT */
.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.check-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.check-list i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* SLIDER */
.slider-box {
  background: var(--white);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.slider {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 18px;
}

.slide,
.slide2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active,
.slide2.active {
  opacity: 1;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.slider-controls button {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
}

/* PILLS */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.pill {
  background: var(--white);
  border: 1px solid rgba(53, 149, 161, 0.18);
  color: var(--text-dark);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

/* NEWSLETTER */
.newsletter-section {
  padding: 90px 7%;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.newsletter-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px 32px;
  box-shadow: var(--shadow);
}

.newsletter-form {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  width: 100%;
  max-width: 420px;
  padding: 15px 18px;
  border: 1px solid rgba(16, 33, 38, 0.12);
  border-radius: 999px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  padding: 15px 22px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.newsletter-box small {
  display: block;
  margin-top: 14px;
  color: var(--text-soft);
}

/* CTA */
.cta-section {
  padding: 90px 7%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-box {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
}

/* FOOTER */
.site-footer {
  background: #17343a;
  color: var(--white);
  padding: 30px 7%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
html {
  scroll-behavior: smooth;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a,
.social-icons a {
  color: var(--white);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* HERO DOWNLOAD BUTTONS - BOTH CLIENT + PHOTOGRAPHER */
.photographer-page .hero-buttons-photographer,
.client-page .hero-buttons-photographer,
.client-page .hero-buttons-client,
.photographer-page .hero-buttons-client {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.photographer-page .hero-buttons-photographer .store-btn,
.client-page .hero-buttons-photographer .store-btn,
.client-page .hero-buttons-client .store-btn,
.photographer-page .hero-buttons-client .store-btn,
.photographer-page .hero-buttons-photographer .btn-contact-small,
.client-page .hero-buttons-photographer .btn-contact-small,
.client-page .hero-buttons-client .btn-contact-small,
.photographer-page .hero-buttons-client .btn-contact-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  min-height: 48px;
  min-width: 170px;
  border: 1px solid var(--white);
  border-radius: 4px;
  background-color: transparent;
  color: var(--white);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.photographer-page .hero-buttons-photographer .store-btn:hover,
.client-page .hero-buttons-photographer .store-btn:hover,
.client-page .hero-buttons-client .store-btn:hover,
.photographer-page .hero-buttons-client .store-btn:hover,
.photographer-page .hero-buttons-photographer .btn-contact-small:hover,
.client-page .hero-buttons-photographer .btn-contact-small:hover,
.client-page .hero-buttons-client .btn-contact-small:hover,
.photographer-page .hero-buttons-client .btn-contact-small:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2);
}

.photographer-page .hero-buttons-photographer .store-btn i,
.client-page .hero-buttons-photographer .store-btn i,
.client-page .hero-buttons-client .store-btn i,
.photographer-page .hero-buttons-client .store-btn i,
.photographer-page .hero-buttons-photographer .btn-contact-small i,
.client-page .hero-buttons-photographer .btn-contact-small i,
.client-page .hero-buttons-client .btn-contact-small i,
.photographer-page .hero-buttons-client .btn-contact-small i {
  font-size: 20px;
  line-height: 1;
}

.photographer-page .store-btn div,
.client-page .store-btn div {
  display: flex;
  align-items: center;
  gap: 0;
}

.photographer-page .store-btn .small-text,
.client-page .store-btn .small-text {
  display: none;
}

.photographer-page .store-btn .big-text,
.client-page .store-btn .big-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.photographer-page .btn-contact-small,
.client-page .btn-contact-small {
  white-space: nowrap;
}

/* OPTIONAL: if client page reuses photographer visual classes */
.client-page .hero-visual-photographer,
.photographer-page .hero-visual-photographer,
.client-page .phone-shell-photographer,
.photographer-page .phone-shell-photographer {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .feature-strip-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 2.9rem;
  }

  .photographer-feature-strip,
  .client-feature-strip {
    margin-top: 0;
    padding-top: 40px;
  }
}

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

  .toggle {
    display: block;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .mini-grid,
  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .split-copy h2,
  .newsletter-box h2,
  .cta-box h2 {
    font-size: 2rem;
  }

  .slider {
    height: 340px;
  }

  .photographer-page .hero-buttons-photographer .store-btn,
  .client-page .hero-buttons-photographer .store-btn,
  .client-page .hero-buttons-client .store-btn,
  .photographer-page .hero-buttons-client .store-btn,
  .photographer-page .hero-buttons-photographer .btn-contact-small,
  .client-page .hero-buttons-photographer .btn-contact-small,
  .client-page .hero-buttons-client .btn-contact-small,
  .photographer-page .hero-buttons-client .btn-contact-small {
    min-width: 160px;
  }

  .feature-strip-card {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .photographer-page .hero-copy,
  .client-page .hero-copy {
    text-align: center;
  }

  .photographer-page .hero-buttons-photographer,
  .client-page .hero-buttons-photographer,
  .client-page .hero-buttons-client,
  .photographer-page .hero-buttons-client {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 505px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-links a,
  .social-icons a {
    margin: 10px 0;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }

  .social-icons a {
    margin-right: 0;
  }
}

@media (min-width: 688px) and (max-width: 952px) {
  .footer-container {
    align-items: flex-end;
  }

  .social-icons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 12px;
  }
}

@media (min-width: 505px) and (max-width: 688px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
  }

  .footer-name {
    width: 100%;
    text-align: center;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .footer-links a {
    margin: 0;
  }

  .social-icons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
  }

  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
