﻿/* ===========================
   iTwins - Company Website
   styles.css - Full Redesign
   =========================== */

/* --- Variables --- */
:root {
  --blue1: #0a2a66;
  --blue2: #0f4c81;
  --accent: #7cc7ff;
  --accent-glow: rgba(124, 199, 255, 0.4);
  --accent2: #64ffda;
  --bg-dark: #0a0f1a;
  --bg-card: #111827;
  --bg-card-hover: #1a2332;
  --text-primary: #e6f1ff;
  --text-secondary: #94a3b8;
  --gradient-primary: linear-gradient(135deg, #7cc7ff, #64ffda);
  --gradient-bg: linear-gradient(135deg, #0b1d2d, #0f2744);
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent2);
}

/* --- Navbar --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(124, 199, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 6px rgba(124, 199, 255, 0.3));
}

.nav-logo:hover .logo-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 12px rgba(124, 199, 255, 0.6));
}

.logo-text {
  display: flex;
  align-items: center;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-row .logo-icon {
  width: 32px;
  height: 32px;
}

.logo-i {
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

.logo-twins {
  color: var(--text-primary);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(124, 199, 255, 0.08);
}

.nav-cta {
  background: var(--gradient-primary) !important;
  color: var(--bg-dark) !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 10px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

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

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* --- Hero --- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, #0d2847 0%, #0a0f1a 70%);
}

#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: rgba(124, 199, 255, 0.1);
  border: 1px solid rgba(124, 199, 255, 0.25);
  color: var(--accent);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease 0.2s backwards;
}

#hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin: 0 0 24px;
  line-height: 1.15;
  animation: fadeInDown 1s ease 0.4s backwards;
}

.typing-wrapper {
  display: inline;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cursor {
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: blink 1s step-end infinite;
  font-weight: 300;
  margin-left: 2px;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 40px;
  animation: fadeInDown 1s ease 0.6s backwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInDown 1s ease 0.8s backwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--accent-glow);
  color: var(--bg-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(124, 199, 255, 0.3);
  color: var(--accent);
}

.btn-outline:hover {
  background: rgba(124, 199, 255, 0.08);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

/* --- Scroll Indicator --- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: floatUp 2s ease-in-out infinite;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(124, 199, 255, 0.4);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 10px;
  background: var(--accent);
  border-radius: 4px;
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

@keyframes floatUp {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* --- Section Styling --- */
section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
}

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

.section-tag {
  display: inline-block;
  background: rgba(124, 199, 255, 0.1);
  color: var(--accent);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h2 {
  text-align: center;
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Service Cards --- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--accent-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.card:hover .card-glow {
  opacity: 0.08;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(124, 199, 255, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 199, 255, 0.12), rgba(100, 255, 218, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(124, 199, 255, 0.2), rgba(100, 255, 218, 0.15));
}

.card-icon i {
  font-size: 1.8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0 0 20px;
  line-height: 1.6;
}

.card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.card-tags span {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(124, 199, 255, 0.08);
  color: var(--accent);
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
}

/* --- Timeline / Process --- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-number {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  z-index: 1;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: rgba(124, 199, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateX(8px);
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  font-weight: 700;
}

.timeline-content h3 i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 1rem;
}

.timeline-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

/* --- Stats --- */
#stats {
  padding: 80px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(124, 199, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  font-family: 'JetBrains Mono', monospace;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.stat-label {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Tech Grid --- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 16px;
  min-height: 110px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: default;
}

.tech-item:hover {
  border-color: rgba(124, 199, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.tech-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.tech-item .tech-icon {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.tech-item:hover i {
  transform: scale(1.15);
  color: var(--accent2);
  filter: drop-shadow(0 0 8px rgba(124, 199, 255, 0.5));
}

.tech-item:hover .tech-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(124, 199, 255, 0.5));
}

.tech-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

/* --- Team --- */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.member {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.4s ease;
}

.member:hover {
  border-color: rgba(124, 199, 255, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.member-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 199, 255, 0.15), rgba(100, 255, 218, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(124, 199, 255, 0.2);
}

.member-avatar i {
  font-size: 2.2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.member h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.member-role {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.member-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0 0 20px;
  line-height: 1.6;
}

.member-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.member-links a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(124, 199, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.member-links a:hover {
  background: var(--accent);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* --- CTA --- */
.cta-box {
  text-align: center;
  background: linear-gradient(135deg, #0d2847 0%, #162f50 50%, #0d2040 100%);
  border: 1px solid rgba(124, 199, 255, 0.15);
  border-radius: 24px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 199, 255, 0.08), transparent 70%);
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 255, 218, 0.06), transparent 70%);
}

.cta-box h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Contact --- */
.contact {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 50px;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 199, 255, 0.12), rgba(100, 255, 218, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--accent);
  font-size: 1.1rem;
}

.contact-item h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
}

.contact-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: left;
}

/* --- Form --- */
form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
textarea,
select {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  transition: all 0.3s ease;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: rgba(124, 199, 255, 0.04);
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.6);
}

select {
  cursor: pointer;
}

select option {
  background: var(--bg-dark);
  color: var(--text-primary);
}

button {
  background: var(--gradient-primary);
  color: var(--bg-dark);
  font-size: 1rem;
  border: none;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--accent-glow);
}

/* --- Footer --- */
footer {
  background: #060a12;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 20px 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand .logo-i,
.footer-brand .logo-twins {
  font-size: 1.6rem;
  font-weight: 800;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(124, 199, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* --- Scroll Fade Animation --- */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(124, 199, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .team {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 50px;
  }

  .timeline-number {
    left: -50px;
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact {
    padding: 30px 20px;
  }

  .cta-box {
    padding: 50px 24px;
  }
}





