/*
==============================================
TABLE OF CONTENTS
==============================================
1.  VARIABLES & THEME
2.  RESET & GLOBAL STYLES
3.  REUSABLE COMPONENTS
    - Container
    - Buttons
    - Section Headers
4.  SITE-WIDE STYLES
    - Custom Cursor
    - Site Background
    - Scrollbar
5.  HEADER & NAVIGATION
    - Header Layout
    - Navigation Menu
    - Mobile Toggle (Hamburger)
6.  HERO SECTION
    - Hero Layout & Content
    - 3D Animated Shapes
7.  PAGE HEADER (For sub-pages)
8.  SERVICES SECTION
    - Service Card Styling
9.  PROCESS SECTION
    - Timeline Styling
10. TESTIMONIALS SECTION
    - Testimonial Card Styling
11. INDUSTRIES SECTION
    - Industry Item Styling
12. CTA (CALL TO ACTION) SECTION
13. CONTACT PAGE
    - Contact Form & Info Layout
    - Form Styling
    - Success Popup
14. LEGAL PAGES
15. FOOTER
    - Footer Layout & Styling
16. ANIMATIONS & EFFECTS
    - Keyframes
    - Scroll Reveal
    - Reveal Text Effect
17. RESPONSIVENESS (Media Queries)
    - Large Desktops (1200px and up)
    - Tablets (up to 992px)
    - Mobile (up to 768px)
    - Small Mobile (up to 480px)
==============================================
*/

/* 1. VARIABLES & THEME */
/* ============================================== */
:root {
    --color-dark-navy: #0A192F;
    --color-light-navy: #172A45;
    --color-lightest-navy: #303C55;
    --color-slate: #8892B0;
    --color-light-slate: #A8B2D1;
    --color-lightest-slate: #CCD6F6;
    --color-white: #E6F1FF;
    --color-accent: #64FFDA;
    --color-accent-dark: #37b494;
    --color-accent-tint: rgba(100, 255, 218, 0.1);

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;

    --header-height: 80px;
    --border-radius: 4px;
    --transition-speed: 0.3s ease;
    --cubic-bezier: cubic-bezier(0.645, 0.045, 0.355, 1);

    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}


/* 2. RESET & GLOBAL STYLES */
/* ============================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-dark-navy);
    color: var(--color-light-slate);
    font-family: var(--font-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-secondary);
    color: var(--color-lightest-slate);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    max-width: 65ch;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-speed);
}

a:hover {
    color: var(--color-accent-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    width: 100%;
    overflow: hidden;
}

.section-padding {
    padding: 100px 0;
}

.highlight {
    color: var(--color-accent);
}

/* 3. REUSABLE COMPONENTS */
/* ============================================== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s var(--cubic-bezier), transform 0.3s var(--cubic-bezier);
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--cubic-bezier);
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background-color: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-primary:hover {
    color: var(--color-dark-navy);
}

.btn-secondary {
    background-color: var(--color-light-navy);
    border: 1px solid var(--color-light-navy);
    color: var(--color-lightest-slate);
}

.btn-secondary:hover {
    color: var(--color-dark-navy);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    padding: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}

.section-subtitle {
    color: var(--color-slate);
    max-width: 600px;
    margin: 20px auto 0;
}

/* 4. SITE-WIDE STYLES */
/* ============================================== */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    background-color: rgba(100, 255, 218, 0.2);
    border: 2px solid var(--color-accent);
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

.cursor-outline.hovered {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(100, 255, 218, 0.3);
}

.site-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, var(--color-lightest-navy) 0%, transparent 20%),
        radial-gradient(circle at 80% 90%, var(--color-light-navy) 0%, transparent 25%);
    opacity: 0.1;
    z-index: -10;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--color-lightest-navy);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-slate);
}


/* 5. HEADER & NAVIGATION */
/* ============================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.4s var(--cubic-bezier), box-shadow 0.4s var(--cubic-bezier), height 0.4s var(--cubic-bezier);
}

.header.scrolled {
    height: 70px;
    background-color: rgba(10, 25, 47, 0.85);
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav {
    gap: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav__logo img {
    height: 60px;
    filter: brightness(0)invert(1);
    transition: var(--transition-speed);
}

.nav__logo:hover img {
    transform: scale(1.05);
}

.nav__menu {
    display: flex;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav__link {
    color: var(--color-lightest-slate);
    font-family: var(--font-secondary);
    padding: 10px;
    position: relative;
    transition: color var(--transition-speed);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s var(--cubic-bezier), left 0.3s var(--cubic-bezier);
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-accent);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
    left: 0;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1001;
}

.nav__toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.nav__toggle-icon span:nth-child(1) {
    top: 0;
}

.nav__toggle-icon span:nth-child(2) {
    top: 10px;
}

.nav__toggle-icon span:nth-child(3) {
    top: 20px;
}

.nav__menu.active+.nav__actions .nav__toggle-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.nav__menu.active+.nav__actions .nav__toggle-icon span:nth-child(2) {
    opacity: 0;
}

.nav__menu.active+.nav__actions .nav__toggle-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}


/* 6. HERO SECTION */
/* ============================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
}

.hero__content {
    max-width: 800px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero__title {
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--color-light-slate);
    margin-bottom: 40px;
}

.hero__cta {
    display: flex;
    gap: 20px;
}

.hero__shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero__shape {
    position: absolute;
    border-radius: 20%;
    background-color: var(--color-accent);
    opacity: 0.05;
}

.hero__shape--1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 5%;
    transform-style: preserve-3d;
    animation: rotate3D 30s infinite linear;
}

.hero__shape--2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: 10%;
    transform-style: preserve-3d;
    animation: rotate3D 25s infinite linear reverse;
}

.hero__shape--3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 40%;
    transform-style: preserve-3d;
    animation: rotate3D 20s infinite linear;
}

/* 7. PAGE HEADER */
/* ============================================== */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(23, 42, 69, 0.5) 0%, var(--color-dark-navy) 100%);
}

.page-header__bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.page-header__shape {
    position: absolute;
    border-radius: 50%;
    background-color: var(--color-accent);
    opacity: 0.04;
    animation: pulse 8s infinite ease-in-out;
}

.page-header__shape--1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
}

.page-header__shape--2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.page-header__title {
    margin-bottom: 15px;
}

.page-header__subtitle {
    color: var(--color-light-slate);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 8. SERVICES SECTION */
/* ============================================== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-light-navy);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-lightest-navy);
    transition: transform 0.3s var(--cubic-bezier), box-shadow 0.3s var(--cubic-bezier);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-accent-tint) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scale(3);
}

.service-card__icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: inline-block;
}

.service-card__title {
    margin-bottom: 15px;
}

.service-card__description {
    color: var(--color-slate);
    margin-bottom: 25px;
}

.service-card__link {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--color-lightest-slate);
}

.service-card__link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-card__link:hover i {
    transform: translateX(5px);
}

/* 9. PROCESS SECTION */
/* ============================================== */
.process {
    background-color: var(--color-light-navy);
}

.process__wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process__line {
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background-color: var(--color-lightest-navy);
    z-index: 1;
}

.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
    z-index: 2;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step__number {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-dark-navy);
    color: var(--color-accent);
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-lightest-navy);
    transition: var(--transition-speed);
}

.process-step:hover .process-step__number {
    background-color: var(--color-accent);
    color: var(--color-dark-navy);
    transform: scale(1.1);
    border-color: var(--color-accent);
}

.process-step__content {
    background-color: var(--color-dark-navy);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: var(--transition-speed);
}

.process-step:hover .process-step__content {
    border-color: var(--color-accent-tint);
}

.process-step__title {
    margin-bottom: 10px;
}

/* 10. TESTIMONIALS SECTION */
/* ============================================== */
.testimonials__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-light-navy);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-accent);
}

.testimonial-card__quote-icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-style: italic;
    color: var(--color-light-slate);
    margin-bottom: 30px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
}

.testimonial-card__author-name {
    margin-bottom: 0;
}

.testimonial-card__author-title {
    color: var(--color-slate);
    font-size: 0.9rem;
    margin-bottom: 0;
}


/* 11. INDUSTRIES SECTION */
/* ============================================== */
.industries {
    background-color: var(--color-light-navy);
}

.industries__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.industry-item {
    background-color: var(--color-dark-navy);
    color: var(--color-light-slate);
    padding: 15px 25px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--color-lightest-navy);
    transition: var(--transition-speed);
}

.industry-item:hover {
    background-color: var(--color-accent-tint);
    color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.industry-item i {
    color: var(--color-accent);
}

/* 12. CTA SECTION */
/* ============================================== */
.cta-section {
    padding: 80px 0;
}

.cta-section__wrapper {
    background-color: var(--color-light-navy);
    border-radius: var(--border-radius);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23303C55' fill-opacity='0.1'%3E%3Crect x='0' y='0' width='50' height='50'/%3E%3Crect x='50' y='50' width='50' height='50'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-section__title {
    margin-bottom: 10px;
}

.cta-section__text {
    margin-bottom: 0;
    max-width: 500px;
}

/* 13. CONTACT PAGE */
/* ============================================== */
.contact-page__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background-color: var(--color-light-navy);
    padding: 50px;
    border-radius: var(--border-radius);
}

.contact-info-block h2 {
    margin-bottom: 20px;
}

.contact-info-block p {
    margin-bottom: 30px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail-item .icon-wrapper {
    background-color: var(--color-accent-tint);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-item .info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-detail-item .info p {
    margin-bottom: 0;
    color: var(--color-slate);
}

.contact-detail-item .info a {
    color: var(--color-light-slate);
}

.contact-detail-item .info a:hover {
    color: var(--color-accent);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-family: var(--font-secondary);
    color: var(--color-light-slate);
}

.form-group input,
.form-group textarea,
.form-group select {
    background-color: var(--color-dark-navy);
    border: 1px solid var(--color-lightest-navy);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    color: var(--color-lightest-slate);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-tint);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364FFDA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 1em;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--color-light-navy);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--color-slate);
    font-size: 2rem;
    cursor: pointer;
}

.popup-icon {
    font-size: 4rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.popup-content h3 {
    margin-bottom: 10px;
}

/* 14. LEGAL PAGES */
/* ============================================== */
.legal-content {
    background-color: var(--color-light-navy);
    padding: 50px;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.legal-content p {
    color: var(--color-slate);
}

.legal-content strong {
    color: var(--color-lightest-slate);
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--color-slate);
}


/* 15. FOOTER */
/* ============================================== */
.footer {
    background-color: var(--color-light-navy);
    padding: 80px 0 30px;
    font-size: 0.9rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer__about .footer__logo img {
    height: 80px;
    filter: brightness(0)invert(1);
    margin-bottom: 20px;
}

.footer__description {
    color: var(--color-slate);
    max-width: 300px;
}

.footer h3 {
    font-size: 1.1rem;
    color: var(--color-lightest-slate);
    margin-bottom: 20px;
}

.footer__links ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a,
.footer__contact a {
    color: var(--color-slate);
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-slate);
}

.footer__contact i {
    color: var(--color-accent);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-lightest-navy);
    color: var(--color-slate);
}


/* 16. ANIMATIONS & EFFECTS */
/* ============================================== */
@keyframes rotate3D {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.04;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.08;
    }

    100% {
        transform: scale(1);
        opacity: 0.04;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--cubic-bezier), transform 0.8s var(--cubic-bezier);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--cubic-bezier), transform 0.8s var(--cubic-bezier), clip-path 0.8s var(--cubic-bezier);
}

.reveal-text.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    transform: translateY(0);
}


/* 17. RESPONSIVENESS */
/* ============================================== */

/* Tablets */
@media (max-width: 992px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(75vw, 400px);
        height: 100vh;
        background-color: var(--color-light-navy);
        box-shadow: -10px 0px 30px -15px rgba(2, 12, 27, 0.7);
        padding: 100px 40px;
        transition: right 0.4s var(--cubic-bezier);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 1000;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .nav__link {
        font-size: 1.2rem;
    }

    .nav__toggle {
        display: block;
    }

    .nav__actions .btn-primary {
        display: none;
        /* Hide in nav actions, show in mobile menu */
    }

    .hero__content {
        text-align: center;
        max-width: 100%;
    }

    .hero__cta {
        justify-content: center;
    }

    .testimonials__wrapper {
        grid-template-columns: 1fr;
    }

    .cta-section__wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer__content {
        grid-template-columns: 1fr 1fr;
    }

    .footer__about {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .process__line {
        left: 20px;
    }

    .process-step {
        padding-left: 60px;
    }

    .process-step__number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .contact-page__wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__about,
    .footer__links,
    .footer__contact {
        align-items: center;
    }

    .footer__description {
        margin: 0 auto 20px;
    }

    .footer__links ul,
    .footer__contact ul {
        align-items: center;
    }

    .footer__contact li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    .hero__cta {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .cta-section__wrapper {
        padding: 40px 20px;
    }

    .legal-content {
        padding: 30px 20px;
    }
}