/* ============================================
   ANA PAULA SAMPAIO — PORTFOLIO
   Design System & Styles
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --bg-primary: #F5F0EB;
  --bg-white: #FFFFFF;
  --pink: #F4A7B9;
  --pink-light: #FDDDE6;
  --pink-hover: #F08DA3;
  --pink-pale: #FEF0F4;
  --badge-dark: #3D3D3D;
  --badge-dark-hover: #2A2A2A;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-tertiary: #888888;
  --text-white: #FFFFFF;
  --border-light: rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
  --glass-bg: rgba(245, 240, 235, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 40px 0;
  --container-width: 1200px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-pill: 100px;
  --radius-circle: 50%;
}

/* ---------- 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: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.site-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ---------- Container ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 700; }

p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- Badges ---------- */
.badge {
  display: inline-block;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge--dark {
  background-color: var(--badge-dark);
  color: var(--text-white);
}

.badge--pink {
  background-color: var(--pink);
  color: var(--text-primary);
}

.badge--pink-outline {
  background-color: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}

/* ---------- Arrow Icon ---------- */
.arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-circle);
  border: 2px solid var(--text-primary);
  flex-shrink: 0;
}

.arrow-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: var(--transition-base);
}

.btn:hover::after {
  transform: translateX(0);
}

.btn--primary {
  background-color: var(--pink);
  color: var(--text-primary);
  border: 2px solid var(--pink);
}

.btn--primary:hover {
  background-color: var(--pink-hover);
  border-color: var(--pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 167, 185, 0.4);
}

.btn--outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn--outline:hover {
  background-color: var(--text-primary);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-base);
}

.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.header__logo span {
  color: var(--pink);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--pink);
  border-radius: 2px;
  transition: var(--transition-base);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--text-primary);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2.5px;
  background-color: var(--text-primary);
  border-radius: 4px;
  transition: var(--transition-base);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.decoration-line {
  position: absolute;
  pointer-events: none;
  opacity: 0.3;
}

.decoration-line svg {
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.5;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 8px;
  line-height: 0.95;
}

.hero__subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__subtitle .badge {
  font-size: 0.95rem;
  padding: 12px 32px;
}

.hero__name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.hero__role {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero__photo {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  border: 3px solid var(--pink-light);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(244, 167, 185, 0.25);
}

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

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__mockups {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}

/* Phone Mockup */
.phone-mockup {
  width: 220px;
  background: var(--bg-white);
  border-radius: 32px;
  padding: 12px;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.phone-mockup:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.phone-mockup__screen {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  background: linear-gradient(135deg, #f8f4f0 0%, #ede7df 100%);
  position: relative;
}

.phone-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 20px;
  z-index: 2;
}

/* Laptop Mockup */
.laptop-mockup {
  width: 480px;
  position: relative;
}

.laptop-mockup__screen {
  background: #1a1a1a;
  border-radius: 12px 12px 0 0;
  padding: 10px 10px 0;
  position: relative;
}

.laptop-mockup__screen-inner {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.laptop-mockup__screen-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laptop-mockup__base {
  height: 16px;
  background: #d4d4d4;
  border-radius: 0 0 8px 8px;
  position: relative;
}

.laptop-mockup__base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #bbb;
  border-radius: 0 0 4px 4px;
}

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

section {
  padding: 60px 0;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.section-title-group {
  margin-bottom: 60px;
}

.section-title-group h2 {
  margin-top: 12px;
}

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

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition-base);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pink);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__badge {
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.service-card__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach {
  padding: var(--section-padding);
  position: relative;
}

.approach__intro {
  max-width: 900px;
  margin-bottom: 60px;
  font-size: 1.05rem;
  line-height: 1.9;
}

.approach .container {
  max-width: 1400px;
}

.approach__circles-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.approach-circle {
  width: 260px;
  height: 260px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.approach-circle:hover {
  transform: translateY(-10px);
  background: var(--pink);
  box-shadow: 0 10px 30px rgba(244, 167, 185, 0.3);
}

.approach-circle__img {
  width: 50px;
  height: 50px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-circle__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.approach-circle__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--text-primary);
  line-height: 1.2;
}

.approach-circle__text {
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--text-secondary);
}

/* Staggered positioning */
@media (min-width: 992px) {
  .approach__circles-container {
    gap: 10px;
    margin-bottom: 120px;
  }
  .approach-circle {
    margin: 0;
  }
  .approach-circle--2, .approach-circle--4 {
    margin-top: 120px;
  }
  .approach-circle--1, .approach-circle--5 {
    margin-top: 20px;
  }
  .approach-circle--3 {
    margin-top: -60px;
  }
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  padding: var(--section-padding);
  position: relative;
}

.process__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.process__column-title {
  margin-bottom: 40px;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.process-step {
  position: relative;
  padding-left: 32px;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: var(--radius-circle);
  background: var(--pink);
  transition: var(--transition-base);
}

.process-step::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 24px;
  width: 2px;
  height: calc(100% + 20px);
  background: var(--pink-light);
}

.process-step:last-child::after {
  display: none;
}

.process-step:hover::before {
  transform: scale(1.4);
  box-shadow: 0 0 0 6px var(--pink-light);
}

.process-step__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.process-step__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
  padding: var(--section-padding);
  position: relative;
}

.portfolio__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.portfolio__intro-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -1px;
}

.portfolio__intro-text {
  font-size: 1.05rem;
  line-height: 1.9;
}

/* Project Card */
.project {
  margin-bottom: 100px;
  position: relative;
}

.project:last-child {
  margin-bottom: 0;
}

.project__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.project__layout--reverse {
  direction: rtl;
}

.project__layout--reverse > * {
  direction: ltr;
}

.project__info {
  position: relative;
}

.project__arrow {
  margin-bottom: 16px;
}

.project__badge {
  margin-bottom: 16px;
}

.project__name {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.project__tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.project__description {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.project__features {
  margin-bottom: 28px;
}

.project__features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.project__features li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--pink);
  font-weight: 700;
  font-size: 1.2em;
}

.project__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid var(--text-primary);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-base);
}

.project__link:hover {
  background: var(--text-primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.project__link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-base);
}

.project__link:hover svg {
  transform: translate(3px, -3px);
}

.project__visual {
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.project__visual--pink-bg {
  background: var(--pink);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
}

/* Focus list */
.project__focus {
  margin-top: 20px;
}

.project__focus h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 10px;
}

.project__focus ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 4px 0;
  padding-left: 24px;
  position: relative;
}

.project__focus ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--pink);
  font-weight: 700;
}

/* ============================================
   WHY WORK WITH ME
   ============================================ */
.why-me {
  padding: var(--section-padding);
  position: relative;
}

.why-me__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  margin-bottom: 80px;
}

.why-me-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-me-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.why-me-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.why-me-card:hover::after {
  transform: scaleX(1);
}

.why-me-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.why-me-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  padding: 80px 0 120px;
  position: relative;
}

.pricing__intro {
  max-width: 800px;
  margin-bottom: 50px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.pricing-card__header {
  background: var(--pink);
  padding: 28px 32px;
  text-align: center;
}

.pricing-card__type {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-card__model {
  font-size: 0.85rem;
  color: var(--text-primary);
  opacity: 0.75;
}

.pricing-card__body {
  padding: 32px;
}

.pricing-card__description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
  min-height: 80px;
}

.pricing-card__prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pricing-card__price-block {
  text-align: center;
  padding: 20px 16px;
  background: var(--pink-pale);
  border-radius: var(--radius-md);
}

.pricing-card__price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  font-weight: 600;
}

.pricing-card__price-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-primary);
}

.pricing-card__price-value small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-tertiary);
  display: block;
  margin-top: 2px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding);
  position: relative;
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 32px;
  letter-spacing: -2px;
}

.about__text {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-secondary);
}

.about__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about__image {
  width: 380px;
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

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

.about__image-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 380px;
  height: 460px;
  border-radius: var(--radius-xl);
  background: var(--pink);
  z-index: 1;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--section-padding);
  position: relative;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 32px;
  letter-spacing: -2px;
  line-height: 1.05;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--pink-light);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.contact__info-item:hover {
  background: var(--pink);
  transform: translateX(8px);
}

.contact__info-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact__info-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

.contact__form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(244, 167, 185, 0.15);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.contact__form .btn {
  width: 100%;
  justify-content: center;
}

.contact__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.footer__copy span {
  color: var(--pink);
  font-weight: 600;
}

.footer__links {
  display: flex;
  gap: 28px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-weight: 500;
  transition: var(--transition-base);
}

.footer__links a:hover {
  color: var(--pink);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays for children */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.19s; }
.stagger > *:nth-child(4) { transition-delay: 0.26s; }
.stagger > *:nth-child(5) { transition-delay: 0.33s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* ============================================
   DECORATIVE SVG CURVES
   ============================================ */
.deco-curve {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.deco-curve--top-right {
  top: -60px;
  right: -40px;
}

.deco-curve--bottom-left {
  bottom: -60px;
  left: -40px;
}

.deco-loops {
  display: flex;
  gap: 0;
}

.deco-loops svg {
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.35;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --container-padding: 0 28px;
    --section-padding: 80px 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__photo {
    margin: 0 auto 24px;
  }

  .hero__visual {
    display: none;
  }

  .hero__badge-row {
    justify-content: center;
  }

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

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

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

  .project__layout,
  .project__layout--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .project__visual {
    /* removed order: -1 so text stays on top */
  }

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

  .about__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__image-wrapper {
    /* removed order: -1 so text stays on top */
  }

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

  .laptop-mockup {
    width: 360px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --container-padding: 0 20px;
    --section-padding: 64px 0;
  }

  /* Header Mobile */
  .header.scrolled {
    background: var(--bg-primary) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: var(--transition-base);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav a {
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: flex;
  }

  /* Mobile overlay */
  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
  }

  .mobile-overlay.active {
    display: block;
  }

  /* Grid adjustments */
  .hero__mockups {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .approach__circles-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .approach-circle {
    width: 280px !important;
    height: 280px !important;
    margin-top: 0 !important;
  }

  .approach-circle__img {
    margin-bottom: 12px;
  }
  
  .portfolio .project__visual > div {
    flex-wrap: wrap !important;
  }
  
  .portfolio .project__visual .phone-mockup {
    width: 130px !important;
    margin-top: 0 !important;
  }

  .process__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-me__grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-card__prices {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 32px 24px;
  }

  .footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .about__image {
    width: 260px;
    height: 310px;
  }

  .about__image-bg {
    width: 260px;
    height: 310px;
    top: -14px;
    right: calc(50% - 144px);
  }

  .project__visual--pink-bg {
    padding: 30px 15px;
  }

  .phone-mockup {
    width: 100%;
    max-width: 160px;
  }

  .laptop-mockup {
    width: 100%;
    max-width: 280px;
  }

  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .deco-curve--top-right {
    right: 0;
  }

  .deco-curve--bottom-left {
    left: 0;
  }
}

@media (max-width: 480px) {
  .approach__grid {
    grid-template-columns: 1fr;
  }

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

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

  .project__visual {
    flex-direction: column;
  }
}
