/* ============================================
   SEAN'S DESIGN STUDIO — CSS DESIGN SYSTEM
   Tesla Supercharger-inspired layout
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #171717;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 1rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1.25rem;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #000;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #000;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #000;
}

p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #393939;
}

.large-text {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 640px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}

.btn-primary {
  background-color: #000;
  color: #fff;
}

.btn-primary:hover {
  background-color: #222;
  opacity: 1;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: #000;
  border: 1.5px solid #000;
}

.btn-secondary:hover {
  background-color: #000;
  color: #fff;
  opacity: 1;
  transform: translateY(-1px);
}

.btn-white {
  background-color: #fff;
  color: #000;
}

.btn-white:hover {
  background-color: #f0f0f0;
  opacity: 1;
  transform: translateY(-1px);
}

.btn-white-outline {
  background-color: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-white-outline:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: #fff;
  opacity: 1;
  transform: translateY(-1px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- LAYOUT UTILITIES ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
}

.section-sm {
  padding: 5rem 0;
}

.section-lg {
  padding: 10rem 0;
}

.bg-white {
  background-color: #ffffff;
}

.bg-light {
  background-color: #f7f7f7;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.transparent {
  background-color: transparent;
}

.navbar.solid {
  background-color: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.navbar-logo {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.navbar.transparent .navbar-logo {
  color: #fff;
}

.navbar.solid .navbar-logo {
  color: #000;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s ease, opacity 0.2s ease;
}

.navbar.transparent .navbar-links a {
  color: rgba(255,255,255,0.85);
}

.navbar.transparent .navbar-links a:hover {
  color: #fff;
  opacity: 1;
}

.navbar.solid .navbar-links a {
  color: #393939;
}

.navbar.solid .navbar-links a:hover {
  color: #000;
  opacity: 1;
}

.navbar-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.navbar.transparent .navbar-cta {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.navbar.transparent .navbar-cta:hover {
  background-color: rgba(255,255,255,0.25);
  opacity: 1;
}

.navbar.solid .navbar-cta {
  background-color: #000;
  color: #fff;
}

.navbar.solid .navbar-cta:hover {
  background-color: #222;
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  gap: 5px;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  width: 22px;
  height: 2px;
  transition: all 0.3s ease;
}

.navbar.transparent .hamburger span {
  background-color: #fff;
}

.navbar.solid .hamburger span {
  background-color: #000;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #000 !important;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background-color: #000 !important;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1005;
  padding: 100px 2rem 2rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1.75rem;
  font-weight: 600;
  color: #000;
  padding: 0.75rem 0;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a:hover {
  opacity: 0.6;
}

.mobile-menu .mobile-cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background-color: #000;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  border-bottom: none;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.1) 70%,
    rgba(0,0,0,0.05) 100%
  );
}

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

.hero-content .eyebrow {
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-content .btn-group {
  justify-content: center;
}

/* ---- STATS ---- */
.stats {
  padding: 6rem 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem 1rem;
}

.stat-number {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #000;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
  font-weight: 400;
  line-height: 1.5;
}

/* ---- FULL-WIDTH VISUAL ---- */
.fullwidth-visual {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.fullwidth-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fullwidth-visual-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
}

.fullwidth-visual-overlay h2 {
  color: #fff;
  text-align: center;
  padding: 0 2rem;
}

/* ---- SERVICES ---- */
.services {
  padding: 8rem 0;
  background-color: #fff;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-header h2 {
  margin-bottom: 1.5rem;
}

.services-header .large-text {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.service-card {
  padding: 3rem;
  background-color: #fafafa;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: #ddd;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card > p {
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.service-card .includes-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.75rem;
}

.service-card ul li {
  padding: 0.35rem 0;
  font-size: 0.9375rem;
  color: #4a4a4a;
  padding-left: 1.25rem;
  position: relative;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
}

/* ---- PORTFOLIO ---- */
.portfolio {
  padding: 8rem 0;
  background-color: #fff;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 4rem;
}

.portfolio-header h2 {
  margin-bottom: 1.25rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover img {
  transform: scale(1.04);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}

.portfolio-item-overlay span {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
}

/* ---- PROCESS ---- */
.process {
  padding: 8rem 0;
  background-color: #f7f7f7;
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-header h2 {
  margin-bottom: 1rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.process-step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.process-step p {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
}

/* ---- PRICING ---- */
.pricing {
  padding: 8rem 0;
  background-color: #fff;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-header h2 {
  margin-bottom: 1.25rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.pricing-card.featured {
  border-color: #000;
  background: #000;
  color: #fff;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured p,
.pricing-card.featured li {
  color: #fff;
}

.pricing-card.featured li::before {
  background-color: #fff;
}

.pricing-card.featured .pricing-label {
  color: rgba(255,255,255,0.6);
}

.pricing-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.25rem;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.price-sub {
  font-size: 0.8125rem;
  color: #888;
  margin-bottom: 2rem;
}

.pricing-card ul {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-card ul li {
  padding: 0.4rem 0;
  font-size: 0.9375rem;
  color: #4a4a4a;
  padding-left: 1.25rem;
  position: relative;
}

.pricing-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
}

.pricing-note {
  margin-top: 3rem;
  text-align: center;
}

.pricing-note p {
  font-size: 0.8125rem;
  color: #999;
}

.pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.5rem;
}

.pricing-includes {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.pricing-card.featured .pricing-includes {
  border-top-color: rgba(255,255,255,0.15);
}

.pricing-excludes {
  margin-top: 1rem;
}

.pricing-excludes li::before {
  background-color: #ccc !important;
}

.pricing-excludes li {
  color: #999 !important;
}

.pricing-card.featured .pricing-excludes li {
  color: rgba(255,255,255,0.4) !important;
}

.pricing-card.featured .pricing-excludes li::before {
  background-color: rgba(255,255,255,0.3) !important;
}

/* ---- BLOG ---- */
.blog {
  padding: 8rem 0;
  background-color: #f7f7f7;
}

.blog-header {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-header h2 {
  margin-bottom: 1.25rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-content {
  padding: 2rem;
}

.blog-card-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-content p {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
}

.blog-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.blog-cta a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000;
  transition: opacity 0.2s ease;
}

.blog-cta a:hover {
  opacity: 0.6;
}

/* ---- FAQ ---- */
.faq {
  padding: 8rem 0;
  background-color: #fff;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header h2 {
  margin-bottom: 1.25rem;
}

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

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #000;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
  gap: 1rem;
}

.faq-question:hover {
  color: #444;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: #000;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.7;
}

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

/* ---- CONTACT ---- */
.contact {
  padding: 8rem 0;
  background-color: #f7f7f7;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h2 {
  margin-bottom: 1.25rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
}

.contact-info-value {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000;
}

.contact-info-value a {
  color: #000;
}

.contact-description {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.875rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9375rem;
  color: #171717;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ---- FINAL CTA ---- */
.final-cta {
  padding: 8rem 0;
  background-color: #000;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn-group {
  justify-content: center;
}

/* ---- FOOTER ---- */
.footer {
  padding: 5rem 0 0;
  background-color: #000;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 380px;
}

.footer-nav h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-nav a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #fff;
  opacity: 1;
}

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.35rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
}

.footer-contact a:hover {
  color: #fff;
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
  opacity: 1;
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

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

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

  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-bottom: 5rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 5rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .fullwidth-visual {
    height: 50vh;
    min-height: 350px;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .container, .container-narrow, .container-wide {
    padding: 0 1.25rem;
  }

  .navbar {
    padding: 0 1.25rem;
  }

  .final-cta {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

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