/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple: #7d6aeb;
  --purple-dark: #6d4dde;
  --orange: #fe5211;
  --orange-light: #ff844b;
  --dark: #333333;
  --gray: #6d6d6d;
  --gray-light: #888888;
  --gray-medium: #4f4f4f;
  --text-light: #5d5d5d;
  --bg-light: #f6f6f6;
  --bg-warm: #fff5ed;
  --bg-purple-light: #efeffe;
  --border: #e7e7e7;
  --white: #ffffff;
  --divider: #eaecf0;
  --input-border: #cfd4dc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 100px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1000;
}

.navbar-logo {
  height: 37px;
}

.navbar-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.navbar-links a {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-light);
  transition: color 0.3s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: #454545;
}

.navbar-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-login {
  font-size: 18px;
  font-weight: 500;
  color: var(--purple);
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 25px;
}

.btn-get-started {
  font-size: 18px;
  font-weight: 500;
  color: var(--purple);
  background: var(--bg-purple-light);
  border: none;
  border-radius: 12px;
  padding: 16px 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-get-started:hover {
  background: #e0dbfe;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 60px 100px 0;
  overflow: hidden;
  min-height: 700px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--purple-dark);
  top: 10%;
  left: -5%;
}

.hero-blob-2 {
  width: 700px;
  height: 700px;
  background: #b8a4ff;
  top: 40%;
  left: 15%;
}

.hero-blob-3 {
  width: 600px;
  height: 600px;
  background: var(--orange-light);
  top: 5%;
  right: -5%;
}

.hero-blob-4 {
  width: 650px;
  height: 650px;
  background: #ffb08c;
  top: 30%;
  right: 5%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-medium);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 25px;
  font-size: 18px;
  font-weight: 500;
  color: var(--bg-light);
  background: var(--purple);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(125, 106, 235, 0.3);
  transition: background 0.3s, transform 0.2s;
}

.btn-demo:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 25px;
  font-size: 18px;
  font-weight: 500;
  color: var(--purple);
  background: var(--bg-purple-light);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-outline:hover {
  background: #e0dbfe;
}

.hero-screenshot {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  max-width: 1089px;
  margin-left: auto;
  margin-right: auto;
}

.hero-screenshot img {
  width: 100%;
  border-radius: 25px;
}

/* ===== GRADIENT BAR ===== */
.gradient-bar {
  height: 158px;
  background: linear-gradient(90deg, var(--purple-dark), var(--orange-light), var(--orange));
  margin-top: -20px;
}

/* ===== WHY CHOOSE ===== */
.why-choose {
  padding: 80px 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto;
}

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

.why-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 25px;
}

.why-card-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 60px;
}

.why-card-icon img {
  width: 30px;
  height: 30px;
}

.why-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

.why-card p {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== REPORTS SECTION ===== */
.reports {
  padding: 0 100px 80px;
}

.reports-inner {
  position: relative;
  background: var(--bg-light);
  border-radius: 20px;
  padding: 80px 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
}

.reports-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.reports-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.reports-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--purple-dark);
  top: -30%;
  left: -10%;
}

.reports-blob-2 {
  width: 600px;
  height: 600px;
  background: #b8a4ff;
  bottom: -30%;
  left: 10%;
}

.reports-text {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 588px;
}

.reports-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 30px;
}

.reports-text p {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 40px;
}

.reports-visual {
  position: relative;
  z-index: 2;
  flex: 0 0 534px;
}

.reports-screenshot {
  position: relative;
}

.reports-screenshot img {
  width: 100%;
  border-radius: 15px;
}

.reports-card {
  position: absolute;
}

.reports-card img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.card-projects {
  top: -20px;
  left: -40px;
  width: 200px;
}

.card-slope {
  bottom: -20px;
  right: -40px;
  width: 200px;
}

.card-low-slope {
  bottom: 80px;
  left: -60px;
  width: 160px;
}

.reports-thumb {
  position: absolute;
  right: -80px;
  top: 10px;
  width: 102px;
}

.reports-thumb img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ===== PHOTOS SECTION ===== */
.photos {
  padding: 0 100px 80px;
}

.photos-inner {
  position: relative;
  background: var(--bg-light);
  border-radius: 20px;
  padding: 80px 60px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
}

.photos-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.photos-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.photos-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--orange-light);
  top: -30%;
  left: -10%;
}

.photos-blob-2 {
  width: 600px;
  height: 600px;
  background: var(--orange-light);
  bottom: -30%;
  left: 10%;
}

.photos-text {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 588px;
}

.photos-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 30px;
}

.photos-text p {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 40px;
}

.photos-visual {
  position: relative;
  z-index: 2;
  flex: 0 0 540px;
}

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

.photos-grid .photo-item {
  border-radius: 15px;
  overflow: hidden;
}

.photos-grid .photo-item img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 15px;
}

/* ===== BEST FEATURES ===== */
.features {
  padding: 48px 100px 80px;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 70px;
  max-width: 1190px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 22px;
}

.feature-item p {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 100px;
}

.faq-list {
  max-width: 768px;
  margin: 0 auto 50px;
}

.faq-item {
  border-bottom: 1px solid var(--divider);
  padding: 20px 0;
}

.faq-item:first-child {
  border-top: none;
  border-bottom: 1px solid var(--divider);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.3s;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--purple-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.5;
  padding-top: 12px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-light);
  border-radius: 20px;
  padding: 30px;
  max-width: 1240px;
  margin: 0 auto;
}

.faq-cta-text h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.faq-cta-text p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
}

.btn-touch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 25px;
  font-size: 18px;
  font-weight: 500;
  color: var(--bg-light);
  background: var(--purple);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-touch:hover {
  background: var(--purple-dark);
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 100px;
  background: var(--bg-light);
  position: relative;
}

.contact-inner {
  display: flex;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 30px;
  flex: 0 0 570px;
  position: relative;
  z-index: 2;
}

.contact-form h2 {
  font-family: 'Inter', sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.contact-form > p {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-medium);
  margin-bottom: 45px;
}

.form-row {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group.full {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #454545;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s;
  color: var(--dark);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b0b0;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
}

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

.phone-input {
  display: flex;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  overflow: hidden;
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px;
  border-right: 1px solid var(--input-border);
  background: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: #0f1728;
  cursor: pointer;
  white-space: nowrap;
}

.phone-prefix select {
  border: none;
  background: none;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: #0f1728;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='5' viewBox='0 0 10 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 4L9 1' stroke='%23667084' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}

.phone-input input {
  border: none;
  border-radius: 0;
  flex: 1;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid var(--input-border);
  border-radius: 6px;
  cursor: pointer;
  accent-color: var(--purple);
}

.checkbox-group label {
  font-size: 16px;
  font-weight: 500;
  color: #454545;
  cursor: pointer;
}

.btn-send {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  background: var(--orange);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-send:hover {
  background: #e84a0e;
}

.contact-visual {
  flex: 1;
  position: relative;
  min-height: 586px;
}

.contact-main-img {
  width: 100%;
  max-width: 803px;
  border-radius: 27px;
}

.contact-float {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.contact-float-1 {
  bottom: -30px;
  left: -30px;
  width: 215px;
}

.contact-float-1 img {
  border-radius: 8px;
}

.contact-float-2 {
  top: -30px;
  right: -30px;
  width: 221px;
}

.contact-float-2 img {
  border-radius: 17px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-warm);
  padding: 80px 100px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 37px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray);
  max-width: 356px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

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

.footer-col ul li {
  margin-bottom: 4px;
}

.footer-col ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--purple);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 5px;
}

.footer-contact-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--gray);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
}

.footer-newsletter h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.footer-newsletter > p {
  font-size: 11.5px;
  font-weight: 500;
  color: #303030;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}

.newsletter-form button {
  padding: 10px 16px;
  background: var(--purple);
  color: var(--bg-light);
  border: none;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: var(--purple-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #e9eaeb;
}

.footer-bottom p {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}

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

.social-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-icon:hover {
  background: var(--bg-purple-light);
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .navbar { padding: 20px 40px; }
  .hero { padding: 60px 40px 0; }
  .why-choose { padding: 80px 40px; }
  .reports { padding: 0 40px 80px; }
  .photos { padding: 0 40px 80px; }
  .features { padding: 48px 40px 80px; }
  .faq { padding: 80px 40px; }
  .contact { padding: 80px 40px; }
  .footer { padding: 80px 40px 30px; }

  .reports-visual { flex: 0 0 450px; }
  .photos-visual { flex: 0 0 450px; }
}

@media (max-width: 1024px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }

  .navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 40px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .hero-content h1 { font-size: 42px; }

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

  .reports-inner { flex-direction: column; padding: 40px 30px; }
  .reports-visual { flex: 0 0 auto; width: 100%; max-width: 534px; margin: 0 auto; }

  .photos-inner { flex-direction: column; padding: 40px 30px; }
  .photos-visual { flex: 0 0 auto; width: 100%; max-width: 540px; margin: 0 auto; }

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

  .contact-inner { flex-direction: column; }
  .contact-form { flex: 0 0 auto; width: 100%; max-width: 570px; }
  .contact-visual { width: 100%; max-width: 803px; margin: 0 auto; }

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

  .section-header h2 { font-size: 36px; }
  .reports-text h2 { font-size: 36px; }
  .photos-text h2 { font-size: 36px; }
}

@media (max-width: 768px) {
  .navbar { padding: 15px 20px; }
  .navbar-actions { gap: 10px; }
  .btn-login { padding: 12px 15px; font-size: 16px; }
  .btn-get-started { padding: 12px 15px; font-size: 16px; }

  .hero { padding: 40px 20px 0; }
  .hero-content h1 { font-size: 34px; }
  .hero-content p { font-size: 16px; }
  .hero-buttons { flex-direction: column; }

  .gradient-bar { height: 80px; }

  .why-choose { padding: 60px 20px; }
  .why-cards { grid-template-columns: 1fr; }
  .why-card-icon { margin-bottom: 30px; }

  .reports { padding: 0 20px 60px; }
  .reports-inner { padding: 30px 20px; }
  .reports-text h2 { font-size: 30px; }
  .reports-text p { font-size: 16px; }

  .card-projects, .card-slope, .card-low-slope, .reports-thumb {
    display: none;
  }

  .photos { padding: 0 20px 60px; }
  .photos-inner { padding: 30px 20px; }
  .photos-text h2 { font-size: 30px; }
  .photos-text p { font-size: 16px; }
  .photos-grid { grid-template-columns: repeat(2, 1fr); }

  .features { padding: 40px 20px 60px; }
  .features-grid { grid-template-columns: 1fr; gap: 30px; }

  .faq { padding: 60px 20px; }
  .faq-cta { flex-direction: column; text-align: center; gap: 20px; }

  .contact { padding: 60px 20px; }
  .contact-form { padding: 25px 20px; }
  .contact-form h2 { font-size: 28px; }
  .form-row { flex-direction: column; gap: 24px; }

  .contact-float { display: none; }

  .footer { padding: 60px 20px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }

  .section-header h2 { font-size: 30px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .section-header h2 { font-size: 26px; }
  .reports-text h2 { font-size: 26px; }
  .photos-text h2 { font-size: 26px; }
  .contact-form h2 { font-size: 24px; }

  .btn-demo, .btn-outline { font-size: 16px; padding: 14px 20px; }
}
