/* ===================================
   BYTE Software - Global Styles
   =================================== */

/* CSS Variables */
:root {
  --primary-color: #00167a;
  --primary-light: #3b5ba8;
  --primary-lighter: #6b88c4;
  --primary-lightest: #e8edf7;
  --accent-color: #eb5423;
  --accent-light: #ff7a52;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6a6a6a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --max-width: 1280px;
  --section-padding: 80px 20px;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

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

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

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

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
  overflow-x: hidden;
}

.section-alt {
  background-color: var(--bg-light);
}

/* Header & Navigation */
.header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

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

.nav a.active {
  color: var(--primary-color);
}

.nav .btn.active {
  color: var(--bg-white);
}

/* Nav Button Specific Styling */
.nav .btn {
  padding: 10px 24px;
}

.nav .btn-accent {
  color: var(--bg-white);
}

.nav .btn-accent::after {
  display: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: #001a99;
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 22, 122, 0.3);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--bg-white);
}

.btn-accent:hover {
  background-color: #d64a1f;
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(235, 84, 35, 0.3);
}

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

.btn-outline:hover {
  background-color: transparent;
  color: var(--bg-white);
  border-color: var(--bg-white);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #001a99 100%);
  color: var(--bg-white);
  padding: 120px 20px;
}

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

.hero-content {
  text-align: left;
}

.hero h1 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 300px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-small {
  padding: 60px 20px;
  text-align: center;
}

.hero-small h1 {
  font-size: 2.5rem;
}

.hero-small p {
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.section > .container > .card-grid {
  margin-top: 2rem;
}

.card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.usps-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.usps-visual img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--bg-white);
}

.card:nth-child(3n + 1) .card-icon {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
}

.card:nth-child(3n + 2) .card-icon {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

.card:nth-child(3n + 3) .card-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-medium);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.section-header p {
  font-size: 1.125rem;
  color: var(--text-medium);
}

/* Process Container */
.process-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.process-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-visual img {
  width: 100%;
  height: auto;
}

/* Process Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 22, 122, 0.1);
  position: relative;
}

.timeline-item:nth-child(1) .timeline-number {
  background: #FFE8DF;
  color: var(--accent-color);
  border: 2px solid #FFE8DF;
}

.timeline-item:nth-child(2) .timeline-number {
  background: #FFCAB8;
  color: var(--accent-color);
  border: 2px solid #FFCAB8;
}

.timeline-item:nth-child(3) .timeline-number {
  background: var(--accent-light);
  color: var(--bg-white);
  border: 2px solid var(--accent-light);
}

.timeline-item:nth-child(4) .timeline-number {
  background: var(--accent-color);
  color: var(--bg-white);
  border: 2px solid var(--accent-color);
}

.timeline-content {
  flex: 1;
  padding-top: 0.5rem;
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  color: #C84418;
}

/* Process Steps - Modern Card Layout */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border-top: 4px solid transparent;
  position: relative;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.process-step:nth-child(1) {
  border-top-color: rgba(59, 91, 168, 0.4);
}

.process-step:nth-child(2) {
  border-top-color: rgba(59, 91, 168, 0.6);
}

.process-step:nth-child(3) {
  border-top-color: var(--primary-light);
}

.process-step:nth-child(4) {
  border-top-color: var(--primary-color);
}

.process-step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-lightest) 0%, rgba(59, 91, 168, 0.15) 100%);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.process-step:nth-child(1) .process-step-number {
  background: linear-gradient(135deg, #ffffff 70%, rgba(59, 91, 168, 0.2) 100%);
}

.process-step:nth-child(2) .process-step-number {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 40%, rgba(59, 91, 168, 0.4) 100%);
}

.process-step:nth-child(3) .process-step-number {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 20%, var(--primary-light) 100%);
  color: var(--bg-white);
}

.process-step:nth-child(4) .process-step-number {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, var(--primary-color) 100%);
  color: var(--bg-white);
}

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

.process-step p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Story/Comparison Section */
.story-content {
  max-width: 600px;
}

.story-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-medium);
}

.comparison-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.comparison-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-item-highlight {
  background: linear-gradient(135deg, var(--primary-lightest) 0%, rgba(235, 84, 35, 0.05) 100%);
  border: 2px solid var(--accent-color);
}

.comparison-item-highlight:hover {
  transform: translateX(5px) translateY(-2px);
}

.comparison-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.comparison-icon-small {
  background: linear-gradient(135deg, #e8f4e8 0%, #c8e6c8 100%);
  color: #2e7d32;
}

.comparison-icon-enterprise {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1565c0;
}

.comparison-icon-byte {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  color: var(--bg-white);
}

.comparison-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.comparison-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Do/Don't Section */
.do-dont-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.do-card {
  border-top: 4px solid #28a745;
}

.dont-card {
  border-top: 4px solid var(--accent-color);
}

.do-dont-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.do-dont-header i {
  font-size: 1.5rem;
  color: #28a745;
}

.do-dont-header-dont i {
  color: var(--accent-color);
}

.do-dont-header h3 {
  margin-bottom: 0;
}

.do-dont-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.do-dont-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

.do-dont-list li i {
  color: #28a745;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.do-dont-list-dont li i {
  color: var(--accent-color);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.portfolio-item {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  width: 100%;
  height: 300px;
  background-color: var(--bg-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-light);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Contact Info */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.contact-details p,
.contact-details a {
  color: var(--text-medium);
  font-size: 1rem;
}

.contact-subtext {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Legal Content */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-lightest);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
  line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content .legal-intro {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 22, 122, 0.1);
}

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

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 3rem 20px 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--bg-white);
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.9);
}

/* Vacature Styles */
.job-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-white);
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.job-header h1 {
  color: var(--bg-white);
}

.job-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.job-content {
  max-width: 800px;
}

.job-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.job-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.job-content li {
  margin-bottom: 0.5rem;
  color: var(--text-medium);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}

.accent-text {
  color: var(--accent-color);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Animation Classes */
.scroll-reveal {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.is-visible {
  opacity: 1;
  animation: slideInFromRight 0.8s ease-out forwards;
}

.timeline-item.scroll-reveal {
  transform: translateX(100px);
}

.timeline-item.scroll-reveal.is-visible {
  transform: translateX(0);
}

/* ===================================
   Mobile Navigation
   =================================== */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===================================
   Responsive Design
   =================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .process-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-visual {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .contact-info {
    gap: 3rem;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 1rem 20px 2rem;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* Slide-down animation */
    display: flex;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.3s ease;
  }

  .nav ul.active {
    clip-path: inset(0 0 0 0);
  }

  .nav ul li {
    width: 100%;
  }

  .nav ul li a {
    display: block;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav ul li:last-child a {
    border-bottom: none;
    margin-top: 0.5rem;
  }

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

  .nav a::after {
    display: none;
  }

  .header .container {
    position: relative;
  }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* Sections */
  .section {
    padding: 60px 20px;
  }

  /* Hero */
  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1.0625rem;
  }

  .hero-image {
    display: none;
  }

  .hero-small {
    padding: 50px 20px;
  }

  .hero-small h1 {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  /* Cards */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  /* Timeline */
  .timeline-item {
    gap: 1rem;
  }

  .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .timeline-content h3 {
    font-size: 1.125rem;
  }

  /* Contact Info */
  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .contact-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  /* Comparison */
  .comparison-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .comparison-icon {
    width: 45px;
    height: 45px;
  }

  /* Do/Don't */
  .do-dont-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section ul {
    padding: 0;
  }

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

  .portfolio-image {
    height: 200px;
  }

  /* Legal */
  .legal-content h2 {
    font-size: 1.25rem;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  /* Typography */
  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 1.875rem;
  }

  .hero-small h1 {
    font-size: 1.625rem;
  }

  /* Buttons */
  .btn {
    padding: 10px 24px;
    font-size: 0.9375rem;
  }

  /* Cards */
  .card {
    padding: 1.25rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Timeline */
  .timeline-number {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
  }

  .timeline-item {
    margin-bottom: 2rem;
  }

  /* Contact */
  .contact-icon {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
  }

  /* Logo */
  .logo img {
    height: 40px;
  }

  /* Container padding */
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 50px 16px;
  }

  .hero {
    padding: 60px 16px;
  }
}
