/*
  CW BASES LTD - Modern Family Budgeting App Website
  Oceanic Color Scheme with Asymmetric Layout
  Author: 2026
*/

:root {
  --ocean-blue: #1e2a38;
  --turquoise: #3ad29f;
  --white: #f8f9fa;
  --text-dark: #23272f;
  --text-light: #7a8ca5;
  --bg-light: #e6f0ec;
  --accent: #ffb347;
  --shadow: 0 8px 32px rgba(0, 102, 204, 0.15);
  --shadow-hover: 0 12px 48px rgba(0, 102, 204, 0.25);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  background: linear-gradient(120deg, #e6f0ec 0%, #f8f9fa 100%);
  color: var(--text-dark);
  min-height: 100vh;
  line-height: 1.7;
  overflow-x: hidden;
}

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 102, 204, 0.1);
  transition: all var(--transition);
}

.sticky-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 102, 204, 0.2);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ocean-blue);
  text-decoration: none;
  letter-spacing: 1px;
  transition: transform var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  transition: color var(--transition);
  position: relative;
  padding: 8px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--turquoise);
  transition: width var(--transition);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a.active,
nav a:hover {
  color: var(--ocean-blue);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 28px;
  height: 3px;
  background: var(--ocean-blue);
  border-radius: 3px;
  transition: all var(--transition);
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Asymmetric Grid */
.hero {
  position: relative;
  min-height: 90vh;
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 120px) clamp(20px, 4vw, 80px);
  display: grid;
  grid-template-columns: 60% 40%;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  z-index: 1;
}

.hero-main {
  position: relative;
  z-index: 2;
}

.hero-title-wrapper {
  margin-bottom: clamp(24px, 4vw, 40px);
  overflow: hidden;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ocean-blue);
  margin: 0;
}

.title-part {
  display: inline-block;
  opacity: 0;
  transform: translateY(100px) rotateX(90deg);
  animation: assemblePart 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes assemblePart {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-light);
  margin-bottom: clamp(32px, 5vw, 48px);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-cta {
  display: flex;
  gap: clamp(16px, 3vw, 24px);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-primary,
.cta-secondary {
  padding: clamp(14px, 2vw, 18px) clamp(32px, 5vw, 48px);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.cta-primary {
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--turquoise), var(--ocean-blue));
  transition: left 0.5s;
  z-index: -1;
}

.cta-primary:hover::before {
  left: 0;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cta-secondary {
  background: transparent;
  color: var(--ocean-blue);
  border: 3px solid var(--ocean-blue);
}

.cta-secondary:hover {
  background: var(--ocean-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.visual-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform var(--transition);
}

.visual-container:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 179, 179, 0.1));
  pointer-events: none;
}

/* Sections */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(60px, 10vw, 120px) clamp(20px, 4vw, 80px);
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 8vw, 80px);
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--ocean-blue);
  margin-bottom: clamp(16px, 3vw, 24px);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-desc {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.2s;
}

.section-desc.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Features Section - Asymmetric Grid */
.features-section {
  background: var(--white);
  border-radius: 40px;
  margin: clamp(40px, 8vw, 80px) auto;
  box-shadow: var(--shadow);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  grid-auto-rows: auto;
}

.feature-card {
  background: var(--bg-light);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 48px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-card.large {
  grid-column: span 2;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.feature-card:hover .feature-icon img {
  transform: scale(1.1);
}

.feature-title {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--ocean-blue);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-desc {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--text-light);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Why Section */
.why-section {
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(32px, 5vw, 48px);
  margin-top: clamp(48px, 8vw, 80px);
}

.why-item {
  padding: clamp(32px, 5vw, 48px);
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(50px);
}

.why-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.why-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.why-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--ocean-blue);
  margin-bottom: 12px;
}

.why-desc {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--text-light);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  border-radius: 40px;
  padding: clamp(60px, 10vw, 100px) clamp(40px, 6vw, 80px);
  margin: clamp(60px, 10vw, 100px) auto;
  max-width: 1400px;
  text-align: center;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-desc {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: clamp(16px, 2.5vw, 20px) clamp(40px, 6vw, 60px);
  background: var(--white);
  color: var(--ocean-blue);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all var(--transition);
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

/* About Section - Statistics */
.about-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  background: linear-gradient(90deg, var(--ocean-blue) 0%, var(--turquoise) 100%);
  border-radius: 0;
  margin: 0;
  padding: clamp(60px, 10vw, 100px) 0;
  box-shadow: none;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.about-content {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
  color: var(--white);
  max-width: 600px;
  margin-left: clamp(40px, 6vw, 80px);
}

.about-content.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-content .section-title {
  text-align: left;
  margin-bottom: clamp(24px, 4vw, 32px);
  color: var(--accent);
}

.about-content p {
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.8;
  text-shadow: 0 2px 8px rgba(30,42,56,0.15);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 32px);
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out 0.2s;
  background: rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px;
  margin-right: clamp(40px, 6vw, 80px);
}

.about-stats.visible {
  opacity: 1;
  transform: translateX(0);
}

.stat-item {
  text-align: center;
  padding: clamp(24px, 4vw, 32px);
  background: rgba(255,255,255,0.18);
  border-radius: 20px;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(30,42,56,0.08);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(30,42,56,0.12);
}

.stat-label {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(30,42,56,0.10);
}

.about-image {
  position: static;
  height: 100%;
  width: auto;
  min-width: 320px;
  max-width: 600px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  margin-left: auto;
  margin-right: clamp(40px, 6vw, 80px);
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  align-items: stretch;
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 30px;
}

/* Contact Section - Split Layout */
.contact-section {
  max-width: 1600px;
  margin: clamp(60px, 10vw, 100px) auto;
  padding: 0 clamp(20px, 4vw, 80px);
  position: relative;
  z-index: 1;
}

.contact-container {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: clamp(40px, 6vw, 80px);
  background: var(--white);
  border-radius: 40px;
  padding: clamp(60px, 10vw, 100px) clamp(40px, 6vw, 80px);
  box-shadow: var(--shadow-hover);
}

.contact-info-panel {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.contact-info-panel.visible {
  opacity: 1;
  transform: translateX(0);
}

.contact-info-panel .section-title {
  text-align: left;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
  margin-bottom: clamp(32px, 5vw, 48px);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item strong {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--ocean-blue);
  font-weight: 700;
}

.contact-item span {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--text-light);
}

.contact-item a {
  color: var(--turquoise);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--ocean-blue);
}

.contact-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-form-panel {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out 0.2s;
}

.contact-form-panel.visible {
  opacity: 1;
  transform: translateX(0);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 24px);
}

.form-group {
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: clamp(16px, 2.5vw, 20px);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  font-family: inherit;
  border: 2px solid var(--bg-light);
  border-radius: 16px;
  background: var(--bg-light);
  color: var(--text-dark);
  transition: all var(--transition);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 179, 179, 0.1);
}

.submit-btn {
  padding: clamp(16px, 2.5vw, 20px) clamp(40px, 6vw, 60px);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow);
  align-self: flex-start;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--ocean-blue), #004d99);
  color: var(--white);
  padding: clamp(60px, 10vw, 100px) clamp(40px, 6vw, 80px) clamp(32px, 5vw, 48px);
  margin-top: clamp(60px, 10vw, 100px);
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(40px, 6vw, 60px);
  margin-bottom: clamp(40px, 6vw, 60px);
}

.footer-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.footer-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-title {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: clamp(20px, 3vw, 24px);
  color: var(--white);
}

.footer-section p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact span {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  margin-bottom: 12px;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--turquoise);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: clamp(32px, 5vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.8);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--text-dark);
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  padding: clamp(20px, 3vw, 32px);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  max-width: 90%;
  width: 100%;
  max-width: 600px;
}

.cookie-popup span {
  flex: 1;
  line-height: 1.6;
}

.cookie-popup a {
  color: var(--turquoise);
  text-decoration: none;
}

.cookie-popup button {
  background: var(--ocean-blue);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 28px);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-popup button:hover {
  background: var(--turquoise);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .about-section {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .feature-card.large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    right: 0;
    background: var(--white);
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    box-shadow: var(--shadow-hover);
    border-radius: 0 0 20px 20px;
    padding: 24px;
    z-index: 999;
  }
  
  nav.open {
    display: flex;
  }
  
  .burger {
    display: flex;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
    padding: clamp(60px, 12vw, 80px) clamp(20px, 5vw, 32px);
  }
  
  .cta-section {
    padding: clamp(40px, 8vw, 60px) clamp(24px, 5vw, 32px);
  }
  
  .contact-container {
    padding: clamp(40px, 8vw, 60px) clamp(24px, 5vw, 32px);
  }
  
  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 1920px) {
  .section,
  .hero,
  .contact-section {
    max-width: 1600px;
  }
}

@media (min-width: 2560px) {
  .section,
  .hero,
  .contact-section {
    max-width: 2000px;
  }
}
