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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid #1e3a8a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 1.5rem;
    color: #1e3a8a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3b82f6;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(30, 58, 138, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-15deg);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(15deg);
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.wavy-accent {
    position: absolute;
    top: -30px;
    left: -20px;
    right: -20px;
    height: 60px;
    background: linear-gradient(45deg, #1e3a8a, #1e40af);
    border-radius: 50% 30% 50% 30%;
    transform: rotate(-2deg);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.wavy-accent::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -15px;
    right: -15px;
    height: 30px;
    background: linear-gradient(45deg, #1e40af, #1e3a8a);
    border-radius: 30% 50% 30% 50%;
    transform: rotate(3deg);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: italic;
    transform: skew(-5deg);
}

.specifications {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.specifications span {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 2px solid #1e3a8a;
    border-radius: 5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

.btn-primary {
    background: #1e3a8a;
    color: white;
}

.btn-primary:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #000;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 500px;
}

/* Hero Single Image */
.hero-single-image {
    position: relative;
    width: 100%;
    border-radius: 30px 15px 30px 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.3);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 24px;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.0) 100%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.image-overlay h3 {
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.image-overlay p {
    color: #ddd;
    font-size: 0.95rem;
}

.overlay-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.overlay-icons span {
    background: #1e3a8a;
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.overlay-icons i {
    color: white;
}

/* Style Section */
.style-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.style-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(30, 58, 138, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-15deg);
    z-index: 0;
}

.style-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.style-text {
    flex: 1;
    max-width: 600px;
}

.style-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.style-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.style-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.style-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(30, 58, 138, 0.2);
    border-radius: 25px 10px 25px 10px;
    border: 2px solid #1e3a8a;
    transition: all 0.3s ease;
}

.style-feature:hover {
    background: rgba(30, 58, 138, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}

.style-feature i {
    font-size: 1.3rem;
    color: #1e3a8a;
}

.style-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.style-image img {
    width: 100%;
    height: auto;
    border-radius: 30px 15px 30px 15px;
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.3);
    transition: transform 0.3s ease;
}

.style-image img:hover {
    transform: scale(1.02);
}

/* Portability Section */
.portability-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.portability-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(30, 58, 138, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(15deg);
    z-index: 0;
}

.portability-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.portability-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.portability-image img {
    width: 100%;
    height: auto;
    border-radius: 30px 15px 30px 15px;
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.3);
    transition: transform 0.3s ease;
}

.portability-image img:hover {
    transform: scale(1.02);
}

.portability-text {
    flex: 1;
    max-width: 600px;
}

.portability-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.portability-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.portability-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.portability-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(30, 58, 138, 0.2);
    border-radius: 25px 10px 25px 10px;
    border: 2px solid #1e3a8a;
    transition: all 0.3s ease;
}

.portability-feature:hover {
    background: rgba(30, 58, 138, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}

.portability-feature i {
    font-size: 1.3rem;
    color: #1e3a8a;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #000;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 58, 138, 0.05) 100%);
    border-radius: 0 0 50% 50%;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.product-card {
    background: #1a1a1a;
    border-radius: 30px 10px 30px 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15);
    transition: all 0.3s ease;
    border: 3px solid #1e3a8a;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.product-image {
    height: 350px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 25px 5px 25px 5px;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(20px) brightness(0.3);
    z-index: 1;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 25px 5px 25px 5px;
    position: relative;
    z-index: 2;
}

.product-img:hover {
    transform: scale(1.05);
}


.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-description {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.product-features span {
    background: #1e3a8a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-features i {
    color: white;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

/* Ease of Use Section */
.ease-section {
    padding: 100px 0;
    background: #000;
}

.ease-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.ease-card {
    background: #1a1a1a;
    border: 3px solid #1e3a8a;
    border-radius: 30px 10px 30px 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15);
}

.ease-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ease-card figcaption {
    padding: 1rem 1.2rem;
    color: #ccc;
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #000;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.05) 0%, transparent 100%);
    border-radius: 50% 50% 0 0;
}

.features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(0deg, rgba(30, 58, 138, 0.05) 0%, transparent 100%);
    border-radius: 0 0 50% 50%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 25px 15px 25px 15px;
    transition: all 0.3s ease;
    border: 3px solid #1e3a8a;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #2a2a2a;
}

.feature-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 50% 30% 50% 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.feature-image i {
    font-size: 3rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.company-name {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.company-name h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-15deg);
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 30%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(15deg);
    z-index: 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.cta-main h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
}

.phone-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px 15px 30px 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.phone-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
}

.phone-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50% 30% 50% 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: phonePulse 2s infinite;
    position: relative;
    z-index: 2;
}

.phone-icon i {
    font-size: 2rem;
    color: #1e3a8a;
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.call-text {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.phone-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: #f0f0f0;
    transform: scale(1.05);
}

.availability {
    font-size: 0.9rem;
    color: white;
    opacity: 0.8;
    font-weight: 500;
}

.cta-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-feature i {
    font-size: 1.2rem;
    color: white;
}


.pulse-ring {
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: pulseRing 2s infinite;
    z-index: 1;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s infinite 0.5s;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulseRing 2s infinite 1s;
}

@keyframes phonePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}


/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo i {
    margin-right: 8px;
    font-size: 1.5rem;
    color: #1e3a8a;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid #1e3a8a;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero {
        padding: 120px 20px 50px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .specifications {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .style-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .style-text h2 {
        font-size: 2.5rem;
    }
    
    .style-features {
        justify-content: center;
    }
    
    .portability-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }
    
    .portability-text h2 {
        font-size: 2.5rem;
    }
    
    .portability-features {
        justify-content: center;
    }
    
    .cta-main h2 {
        font-size: 2.5rem;
    }
    
    .phone-cta {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .phone-number {
        font-size: 2rem;
    }
    
    .cta-features {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .specifications {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .products h2,
    .features h2,
    .cta-main h2,
    .style-text h2,
    .portability-text h2 {
        font-size: 2rem;
    }
    
    .style-features,
    .portability-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .phone-number {
        font-size: 1.8rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .company-name h2 {
        font-size: 1.8rem;
    }
}