/* ============================================
   GLOBAL STYLES
   Reset, Variables, Header, Navigation, Footer
   ============================================ */

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

:root {
    /* Core Brand Colors */
    --color-red: #CD0000;
    --color-orange: #FF9800;
    --color-yellow: #DCCD00;
    --color-green: #0EDA65;
    --color-teal: #00CB9E;
    --color-cyan: #00B5DD;
    --color-blue: #405DFF;
    --color-violet: #9200FF;
    --color-magenta: #D300C2;
    --color-pink: #D40069;

    /* RGB Values (for rgba usage with opacity) */
    --rgb-red: 205, 0, 0;
    --rgb-orange: 255, 152, 0;
    --rgb-green: 14, 218, 101;
    --rgb-teal: 0, 203, 158;
    --rgb-cyan: 0, 181, 221;
    --rgb-blue: 64, 93, 255;
    --rgb-violet: 146, 0, 255;
    --rgb-magenta: 211, 0, 194;

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-lighter-grey: #AAAAAA;
    --color-light-grey: #808080;
    --color-grey: #505050;
    --color-dark-grey: #303030;
    --color-darker-grey: #0A0A0A;
    --color-black: #000000;

    /* RGB Neutral Colors */
    --rgb-grey: 80, 80, 80;
    --rgb-bg-dark: 10, 10, 10;
    --rgb-black: 0, 0, 0;

    /* Backgrounds */
    --color-bg-dark: #0A0A0A;
    --color-bg-darker: #101010;

    /* Gradient Settings */
    --gradient-angle: 135deg;

    /* Static Gradients (for performance-critical elements) */
    --gradient-hero: linear-gradient(135deg, var(--color-orange) 0%, #FFD54F 100%);

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --spacing-2xl: 80px;

    /* Corner System */
    --corner-size: 8px;
    /* With box-sizing: border-box, this is the total visual size */
    --corner-border-width: 2px;
    --corner-offset: -2px;
    /* Same as border width */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.5;
    overflow-x: hidden;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid var(--color-dark-grey);
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.header-progress-bar {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-orange) 10%, var(--color-yellow) 100%);
    z-index: 1001;
    opacity: 0;
    transition: width 0.4s ease, opacity 0.3s ease;
    pointer-events: none;
}

.header-progress-bar.active {
    opacity: 1;
}

.header-content {
    width: 100%;
    max-width: 1800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px 0 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    user-select: none;
}

.logo:hover {
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.logo-text {
    font-family: var(--font-logo);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
}

.nav-item-wrapper {
    position: relative;
    align-self: stretch;
}

.nav-item {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    transition: opacity 0.3s;
    text-decoration: none;
}



.nav-item-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
    padding: 0 8px;
}

.nav-item-dropdown.active {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-chevron {
    width: 8px;
    height: 8px;
    transition: transform 0.3s;
}

.nav-item-dropdown.active .nav-chevron {
    transform: rotate(90deg);
}

/* Capabilities Dropdown */
.capabilities-dropdown {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 250px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(2px);
    border-bottom: 1px solid var(--color-dark-grey);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
}

.capabilities-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    display: flex;
    height: 100%;
    max-width: 1660px;
    margin: 0 auto;
}

/* Left Navigation Panel */
.dropdown-nav {
    width: 250px;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    padding: 17px 0;
    overflow: visible;
    position: relative;
}

/* Extend nav background to left edge */
.dropdown-nav::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.dropdown-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 25px;
    background: none;
    border: 2px solid transparent;
    cursor: pointer;
    color: var(--color-white);
    transition: all 0.2s;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    overflow: visible;
}

.dropdown-nav-item:hover,
.dropdown-nav-item.active {
    border: 2px solid;
}

/* Strategy colors - red+orange */
.dropdown-nav-item[data-capability="strategy"]:hover,
.dropdown-nav-item[data-capability="strategy"].active {
    background: linear-gradient(135deg, rgba(var(--rgb-red), 0.1) 0%, rgba(var(--rgb-orange), 0.1) 100%);
    border-color: transparent;
    border-image: linear-gradient(135deg, rgba(var(--rgb-red), 0.2), rgba(var(--rgb-orange), 0.2)) 1;
}

/* Design colors - green+teal */
.dropdown-nav-item[data-capability="design"]:hover,
.dropdown-nav-item[data-capability="design"].active {
    background: linear-gradient(135deg, rgba(var(--rgb-green), 0.1) 0%, rgba(var(--rgb-teal), 0.1) 100%);
    border-color: transparent;
    border-image: linear-gradient(135deg, rgba(var(--rgb-green), 0.2), rgba(var(--rgb-teal), 0.2)) 1;
}

/* Development colors - cyan+blue */
.dropdown-nav-item[data-capability="development"]:hover,
.dropdown-nav-item[data-capability="development"].active {
    background: linear-gradient(135deg, rgba(var(--rgb-cyan), 0.1) 0%, rgba(var(--rgb-blue), 0.1) 100%);
    border-color: transparent;
    border-image: linear-gradient(135deg, rgba(var(--rgb-cyan), 0.1), rgba(var(--rgb-blue), 0.2)) 1;
}

/* Data Science colors - violet+magenta */
.dropdown-nav-item[data-capability="data-science"]:hover,
.dropdown-nav-item[data-capability="data-science"].active {
    background: linear-gradient(135deg, rgba(var(--rgb-violet), 0.1) 0%, rgba(var(--rgb-magenta), 0.1) 100%);
    border-color: transparent;
    border-image: linear-gradient(135deg, rgba(var(--rgb-violet), 0.2), rgba(var(--rgb-magenta), 0.2)) 1;
}

/* Top Corners - Pseudo-elements (uses unified corner system) */
.nav-item-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* All corners use unified .nav-corner system defined below */

/* Show all corners on hover/active */
.dropdown-nav-item:hover .nav-corner,
.dropdown-nav-item.active .nav-corner {
    border-color: currentColor;
}

/* Strategy - all corners - red */
.dropdown-nav-item[data-capability="strategy"]:hover .nav-corner,
.dropdown-nav-item[data-capability="strategy"].active .nav-corner {
    border-color: var(--color-red);
}

/* Design - all corners - green */
.dropdown-nav-item[data-capability="design"]:hover .nav-corner,
.dropdown-nav-item[data-capability="design"].active .nav-corner {
    border-color: var(--color-green);
}

/* Development - all corners - cyan */
.dropdown-nav-item[data-capability="development"]:hover .nav-corner,
.dropdown-nav-item[data-capability="development"].active .nav-corner {
    border-color: var(--color-cyan);
}

/* Data Science - all corners - violet */
.dropdown-nav-item[data-capability="data-science"]:hover .nav-corner,
.dropdown-nav-item[data-capability="data-science"].active .nav-corner {
    border-color: var(--color-violet);
}

.nav-item-icon {
    width: 16px;
    height: 16px;
    display: none;
    /* Hide the img, use pseudo-element with gradient instead */
}

/* Icon container for gradient icons */
.nav-item-content {
    position: relative;
}

.nav-item-content::before {
    content: '';
    width: 16px;
    height: 16px;
    display: block;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    flex-shrink: 0;
}

/* Strategy icon - red+orange gradient */
.dropdown-nav-item[data-capability="strategy"] .nav-item-content::before {
    -webkit-mask-image: url(/public/icons/strategy.svg);
    mask-image: url(/public/icons/strategy.svg);
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
}

/* Design icon - green+teal gradient */
.dropdown-nav-item[data-capability="design"] .nav-item-content::before {
    -webkit-mask-image: url(/public/icons/design.svg);
    mask-image: url(/public/icons/design.svg);
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-teal) 100%);
}

/* Development icon - cyan+blue gradient */
.dropdown-nav-item[data-capability="development"] .nav-item-content::before {
    -webkit-mask-image: url(/public/icons/development.svg);
    mask-image: url(/public/icons/development.svg);
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-blue) 100%);
}

/* Data Science icon - violet+magenta gradient */
.dropdown-nav-item[data-capability="data-science"] .nav-item-content::before {
    -webkit-mask-image: url(/public/icons/data-science.svg);
    mask-image: url(/public/icons/data-science.svg);
    background: linear-gradient(135deg, var(--color-violet) 0%, var(--color-magenta) 100%);
}

.nav-item-arrow {
    width: 8px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item-arrow img {
    width: 8px;
    height: 8px;
    transform: rotate(0deg);
}

/* Right Content Panel */
.dropdown-details {
    flex: 1;
    padding: 32px;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: 250px;
}

.capability-details {
    display: none;
}

.capability-details.active {
    display: block;
    height: 186px;
}

.dropdown-services-grid {
    column-width: 250px;
    column-gap: 32px;
    column-fill: auto;
    height: 100%;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    height: 100%;
}

.dropdown-service-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    break-inside: avoid;
    margin-bottom: 24px;
}

.dropdown-service-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1;
}

.dropdown-service-divider {
    width: 100%;
    height: 2px;
    background: var(--color-dark-grey);
}

.dropdown-service-divider.gradient-strategy {
    background: linear-gradient(var(--gradient-angle), var(--color-red) 0%, var(--color-orange) 100%);
}

.dropdown-service-divider.gradient-design {
    background: linear-gradient(var(--gradient-angle), var(--color-green) 0%, var(--color-teal) 100%);
}

.dropdown-service-divider.gradient-development {
    background: linear-gradient(var(--gradient-angle), var(--color-cyan) 0%, var(--color-blue) 100%);
}

.dropdown-service-divider.gradient-data-science {
    background: linear-gradient(var(--gradient-angle), var(--color-violet) 0%, var(--color-magenta) 100%);
}

.dropdown-service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.dropdown-service-list li {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-grey);
    line-height: 1.4;
}

/* Automatically create 2 columns for lists with more than 6 items */
.dropdown-service-list li:nth-child(7) {
    display: block;
}

.dropdown-service-list:has(li:nth-child(7)) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 8px;
}

/* Industries Dropdown */
.industries-dropdown {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(2px);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
    min-width: 150px;
}

.industries-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.industries-dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
}

.industry-item:hover {
    opacity: 0.7;
}

a.industry-item {
    color: var(--color-white);
}

.industry-item span {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.industry-icon {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

/* ============================================
   SHARED HERO COMPONENTS
   Base hero styles used across pages
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--color-black);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1;
    color: var(--color-grey);
    text-transform: lowercase;
}

.hero-title {
    font-family: var(--font-hero);
    font-size: 56px;
    line-height: 1;
    font-weight: 400;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 800px;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 22px;
    line-height: 1;
    color: var(--color-white);
}

/* ============================================
   SHARED SECTION COMPONENTS
   Section headers used across pages
   ============================================ */

.section-subtitle {
    font-family: var(--font-hero);
    font-size: 44px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1;
}

.section-description {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-light-grey);
    max-width: 800px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 32px;
}

/* ============================================
   LOGOS SECTION
   Logo carousel used across pages
   ============================================ */

.logos {
    position: relative;
    width: 100%;
    height: 150px;
    background: var(--color-bg-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.logos-container {
    position: relative;
    width: 100%;
    height: 90px;
    overflow: hidden;
}

.logos-track {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    height: 100%;
    animation: scroll-logos 30s linear infinite;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@keyframes scroll-logos {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-height: 24px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(31%);
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: none;
    opacity: 1;
}

.logo-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 2;
}

.logo-fade-left {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg-dark) 0%, transparent 100%);
}

.logo-fade-right {
    right: 0;
    background: linear-gradient(270deg, var(--color-bg-dark) 0%, transparent 100%);
}

/* ============================================
   GLOBAL BUTTONS
   ============================================ */

.btn-primary {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-white);
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid rgba(255, 152, 0, 0.2);
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    position: relative;
}

.btn-primary:hover {
    background: rgba(255, 152, 0, 0.2);
    border-color: rgba(255, 152, 0, 0.2);
}

.btn-primary .btn-corner {
    border-color: var(--color-orange);
}

.btn-primary:hover .btn-corner {
    width: 16px;
    height: 16px;
}

.btn-contact {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-white);
    background: rgba(80, 80, 80, 0.1);
    border: 2px solid rgba(80, 80, 80, 0.2);
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

/* Top Corners - Pseudo-elements (uses unified corner system) */
.btn-contact:hover {
    background: rgba(80, 80, 80, 0.2);
    border-color: rgba(80, 80, 80, 0.2);
}

.btn-contact:hover .btn-corner {
    width: 16px;
    /* With box-sizing: border-box, this is the total visual size */
    height: 16px;
}

/* Universal Corner System - Base Styles */
.btn-corner,
.nav-corner {
    position: absolute;
    width: var(--corner-size);
    height: var(--corner-size);
    border: none;
    transition: all 0.3s;
}

/* Top Left Corner */
.btn-corner-tl,
.nav-corner-tl {
    top: var(--corner-offset);
    left: var(--corner-offset);
    border-top: var(--corner-border-width) solid transparent;
    border-left: var(--corner-border-width) solid transparent;
}

/* Top Right Corner */
.btn-corner-tr,
.nav-corner-tr {
    top: var(--corner-offset);
    right: var(--corner-offset);
    border-top: var(--corner-border-width) solid transparent;
    border-right: var(--corner-border-width) solid transparent;
}

/* Bottom Left Corner */
.btn-corner-bl,
.nav-corner-bl {
    bottom: var(--corner-offset);
    left: var(--corner-offset);
    border-bottom: var(--corner-border-width) solid transparent;
    border-left: var(--corner-border-width) solid transparent;
}

/* Bottom Right Corner */
.btn-corner-br,
.nav-corner-br {
    bottom: var(--corner-offset);
    right: var(--corner-offset);
    border-bottom: var(--corner-border-width) solid transparent;
    border-right: var(--corner-border-width) solid transparent;
}

/* Contact Button Corners */
.btn-contact .btn-corner {
    border-color: var(--color-grey);
}

.btn-contact:hover .btn-corner {
    width: 16px;
    /* With box-sizing: border-box, this is the total visual size */
    height: 16px;
}

/* ============================================
   FOOTER
   ============================================ */

/* Footer */
.footer {
    position: relative;
    width: 100%;
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-dark-grey);
}

.footer-content {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.footer-logo-text {
    font-family: var(--font-logo);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-email {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-white);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-grey);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
    cursor: default;
}

.footer-tagline:hover {
    color: var(--color-white);
}

.footer-icon-heart {
    width: 14px;
    height: 14px;
    margin: 0 2px;
    background-color: var(--color-grey);
    -webkit-mask-image: url(/public/icons/heart.svg);
    mask-image: url(/public/icons/heart.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: background-color 0.3s ease;
}

.footer-tagline:hover .footer-icon-heart {
    background-color: var(--color-red);
}

.footer-icon-flag {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    filter: brightness(0) saturate(100%) invert(31%);
    transition: all 0.3s ease;
}

.footer-tagline:hover .footer-icon-flag {
    filter: none;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-light-grey);
}

.footer-right {
    display: flex;
    gap: 128px;
}

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

.footer-column-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-grey);
}

.footer-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(70%);
}

.footer-column a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-light-grey);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--color-orange);
}

/* ============================================
   RESPONSIVE BREAKPOINTS - GLOBAL
   ============================================ */

/* 1024px Breakpoint */
@media (max-width: 1024px) {

    /* Header */
    .header-content {
        padding: 0 40px;
    }

    /* Hero */
    .hero-subtitle {
        font-size: 22px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    /* Section Styling */
    .section-subtitle {
        font-size: 36px;
    }

    .section-description {
        font-size: 16px;
    }

    /* Footer */
    .footer-content {
        padding: 80px 40px;
    }
}

/* 768px Breakpoint */
@media (max-width: 768px) {

    /* Header & Navigation */
    .header-content {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    /* Hero Section */
    .hero {
        min-height: 70vh;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-title {
        font-size: 28px;
        max-width: 100%;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.4;
    }

    .btn-primary {
        font-size: 12px;
        padding: 14px 24px;
    }

    /* Section Styling */
    .section-subtitle {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .section-description {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 24px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 40px;
        padding: 80px 20px;
    }

    .footer-right {
        gap: 20px;
    }

    .footer-logo-text {
        font-size: 24px;
    }

    .footer-email,
    .footer-copyright {
        font-size: 12px;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .footer-column-title {
        font-size: 12px;
    }

    .footer-column a {
        font-size: 12px;
    }
}

/* 480px Breakpoint */
@media (max-width: 480px) {

    /* Hero Section */
    .hero-subtitle {
        font-size: 16px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
    }

    /* Section Styling */
    .section-subtitle {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }
}